﻿/* ── COOKIE TABLE ─────────────────────────────────────────────────────────── */
.cookie-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-1);
    margin-top: 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    min-width: 480px;
}

    .cookie-table thead {
        border-bottom: 1px solid var(--border);
    }

    .cookie-table th {
        padding: 14px 20px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
        text-align: left;
        white-space: nowrap;
        background: var(--surface-2);
    }

    .cookie-table td {
        padding: 14px 20px;
        font-size: 0.86rem;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border);
        vertical-align: middle;
        line-height: 1.6;
    }

    .cookie-table tbody tr:last-child td {
        border-bottom: none;
    }

    .cookie-table tbody tr {
        transition: background 0.15s;
    }

        .cookie-table tbody tr:hover {
            background: rgba(255,255,255,0.02);
        }

.cookie-table__duration {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}
