.quotes-shell {
    display: grid;
    gap: 14px;
}

.quotes-kpis {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quotes-kpi {
    background: rgba(17, 17, 27, 0.32);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.adm-theme-light .quotes-kpi {
    background: rgba(255, 255, 255, 0.64);
}

.quotes-kpi small {
    color: var(--muted);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.quotes-kpi b {
    color: var(--text);
    font-size: 18px;
}

.quotes-kpi.green b { color: var(--green); }
.quotes-kpi.yellow b { color: var(--yellow); }
.quotes-kpi.blue b { color: var(--blue); }
.quotes-kpi.muted b { color: var(--muted); }

.quotes-table-wrap {
    overflow-x: auto;
}

.quotes-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.quotes-table th {
    background: rgba(44, 95, 141, 0.08);
    border-bottom: 1px solid var(--line);
    padding: 0;
    text-align: left;
}

.quotes-table th button {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    padding: 11px 10px;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

.quotes-table td {
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    padding: 11px 10px;
}

.quotes-table tr:hover td {
    background: rgba(44, 95, 141, 0.06);
}

.quotes-table td:first-child {
    display: grid;
    gap: 3px;
}

.quotes-table td:first-child small {
    color: var(--muted);
    font-size: 11px;
}

.quotes-table .up {
    color: var(--green);
    font-weight: 800;
}

.quotes-table .down {
    color: var(--red);
    font-weight: 800;
}

.quotes-table .missing,
.quotes-empty {
    color: var(--muted);
}

.quotes-empty {
    padding: 24px;
    text-align: center;
}

.quotes-footnote {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

@media (max-width: 980px) {
    .quotes-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .quotes-kpis {
        grid-template-columns: 1fr;
    }
}
