/* MARKOM — legenda / penjelasan kolom tabel (performa iklan, laporan bulanan) */

.markom-col-legend {
    margin: 0 0 1rem;
    border: 1px solid #52525b;
    border-radius: 10px;
    background: #18181b;
    color: #fafafa;
    font-size: 13px;
    line-height: 1.45;
    overflow: hidden;
}

.markom-col-legend-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background: #27272a;
    border-bottom: 1px solid transparent;
}

.markom-col-legend-summary::-webkit-details-marker {
    display: none;
}

.markom-col-legend[open] .markom-col-legend-summary {
    border-bottom-color: #3f3f46;
}

.markom-col-legend-summary__label {
    font-weight: 700;
    font-size: 14px;
    color: #fafafa;
}

.markom-col-legend-summary__meta {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.markom-col-legend-summary__action {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #a1a1aa;
}

.markom-col-legend[open] .markom-col-legend-summary__action::before {
    content: '▾ ';
    color: #fbbf24;
}

.markom-col-legend:not([open]) .markom-col-legend-summary__action::before {
    content: '▸ ';
    color: #fbbf24;
}

.markom-col-legend-panel {
    padding: 0.75rem 0.85rem 0.85rem;
}

.markom-col-legend-group-title {
    margin: 0 0 0.45rem;
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.12);
    border-left: 3px solid #f59e0b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fbbf24;
}

.markom-col-legend-group-title:not(:first-child) {
    margin-top: 0.85rem;
}

.markom-col-legend-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.markom-col-legend-table th,
.markom-col-legend-table td {
    padding: 0.5rem 0.65rem;
    border: 1px solid #3f3f46;
    vertical-align: top;
    text-align: left;
}

.markom-col-legend-table th {
    width: 8.5rem;
    font-size: 12px;
    font-weight: 800;
    color: #fde68a;
    background: #27272a;
    white-space: nowrap;
}

.markom-col-legend-table td {
    font-size: 13px;
    font-weight: 500;
    color: #d4d4d8;
    background: #1f1f23;
    line-height: 1.5;
}

.markom-col-legend-table tbody tr:nth-child(even) td {
    background: #232328;
}

.markom-col-legend-table tbody tr:nth-child(even) th {
    background: #2a2a30;
}

/* Performa iklan — ikut variabel tema widget */
.markom-col-legend--ad-performance {
    border-color: var(--markom-ap-border, #52525b);
    background: var(--markom-ap-surface, #18181b);
}

.markom-col-legend--ad-performance .markom-col-legend-summary {
    background: var(--markom-ap-surface-muted, #27272a);
}

.markom-col-legend--ad-performance .markom-col-legend-summary__label {
    color: var(--markom-ap-text-strong, #fafafa);
}

.markom-col-legend--ad-performance .markom-col-legend-table th {
    color: #fbbf24;
    background: var(--markom-ap-surface-muted, #27272a);
}

.markom-col-legend--ad-performance .markom-col-legend-table td {
    color: var(--markom-ap-text-muted, #d4d4d8);
    background: var(--markom-ap-surface, #1f1f23);
}

/* Panel laporan bulanan (Filament) */
.markom-col-legend--panel {
    margin-bottom: 0;
}

/* Presentasi slide laporan bulanan */
.markom-col-legend--slides {
    border-color: #334155;
    background: rgba(15, 23, 42, 0.9);
}

.markom-col-legend--slides .markom-col-legend-summary {
    background: rgba(30, 41, 59, 0.95);
}

.markom-col-legend--slides .markom-col-legend-table th,
.markom-col-legend--slides .markom-col-legend-table td {
    border-color: #334155;
}

.markom-col-legend--slides .markom-col-legend-table th {
    background: rgba(30, 41, 59, 0.95);
    color: #fbbf24;
}

.markom-col-legend--slides .markom-col-legend-table td {
    background: rgba(15, 23, 42, 0.75);
    color: #cbd5e1;
}

@media (max-width: 640px) {
    .markom-col-legend-table {
        table-layout: auto;
    }

    .markom-col-legend-table th {
        width: 7rem;
        white-space: normal;
    }

    .markom-col-legend-summary__action {
        width: 100%;
        margin-left: 0;
    }
}

.markom-col-legend--reco-rules {
    border-color: rgba(245, 158, 11, 0.45);
}

.markom-col-legend--reco-rules .markom-col-legend-summary__label {
    color: #fde68a;
}

.markom-col-legend--reco-rules .markom-col-legend-table th {
    color: #fcd34d;
}

.markom-col-legend--reco-rules .markom-col-legend-group-title {
    background: rgba(245, 158, 11, 0.1);
}

@media print {
    .markom-col-legend {
        break-inside: avoid;
    }

    .markom-col-legend-summary__action {
        display: none;
    }
}
