/*
 * PIT20-687 — Ajánlattükör.
 *
 * ⚠️ Az első oszlop RAGAD. Öt ajánlattevőnél a táblázat vízszintesen görget, és e nélkül
 * nem látszana, melyik tételről van szó — vagyis pont az összehasonlítás veszne el.
 */

.quoteComparisonTableWrapper {
    overflow-x: auto;
    max-height: 60vh;
    overflow-y: auto;
}

.quoteComparisonTable {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.quoteComparisonTable th,
.quoteComparisonTable td {
    vertical-align: top;
    white-space: nowrap;
}

.quoteComparisonTable .quoteStickyCol {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: var(--planit-surface, #fff);
    min-width: 260px;
    max-width: 320px;
    white-space: normal;
}

.quoteComparisonTable thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: var(--planit-surface, #fff);
}

.quoteComparisonTable thead .quoteStickyCol {
    z-index: 4;
}

/* A legolcsóbb ár soronként — kiemelve, de nem harsányan: a legolcsóbb nem
   automatikusan a legjobb (lásd lefedettség és fedezet). */
.quoteCell.quoteCheapest .quoteCellPrice {
    font-weight: 700;
}

.quoteCell.quoteCheapest {
    background-color: rgba(76, 175, 80, .10);
}

/* Kiugró ár MINDKÉT irányban. A "low" nem dicséret, hanem figyelmeztetés: a gyanúsan
   olcsó ár általában félreértett tételt jelent, és pótmunkaként jön vissza. */
.quoteCell.quoteOutlierHigh {
    box-shadow: inset 3px 0 0 #ff7043;
}

.quoteCell.quoteOutlierLow {
    box-shadow: inset 3px 0 0 #ffa726;
}

/* Nincs ár — háromféle okból, háromféle jelöléssel. */
.quoteCell.quoteDeclined,
.quoteCell.quoteMissing,
.quoteCell.quoteUnpriced {
    background-color: rgba(0, 0, 0, .03);
}

.quoteCell.quoteDeclined .quoteCellState {
    color: #e53935;
}

.quoteCell.quoteMissing .quoteCellState,
.quoteCell.quoteUnpriced .quoteCellState {
    color: #fb8c00;
}

/* Hiányos ajánlat oszlopa — a végösszege nem hasonlítható a teljesekhez. */
.quoteColumn.quoteIncomplete {
    background-color: rgba(255, 152, 0, .08);
}

.quoteCoverageIncomplete {
    color: #ef6c00;
    font-weight: 600;
}

/* Negatív fedezet: ezen a tételen VESZTENÉNK. */
.quoteMarginNegative {
    color: #e53935;
    font-weight: 600;
}

.quoteMarginPositive {
    color: #2e7d32;
}

/* Kiegészítő tétel — nincs hozzá saját árunk, tehát fedezet sem. */
.quoteComparisonRow.quoteExtraItem .quoteStickyCol {
    border-left: 3px solid #90a4ae;
}

.quoteScoreRow {
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.quoteScoreBar {
    height: 6px;
    border-radius: 3px;
    background-color: #26a69a;
    margin-left: 8px;
}
