﻿/* ============================================================
   CDL Section Tabs – Compact 2026
   ============================================================ */

.cdl-section-tabs-wrapper {
    margin: 0;
    padding: 6px 16px 8px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cdl-section-tabs {
    display: flex;
    gap: 8px;
}

.cdl-section-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.cdl-section-tabs-wrapper {
    scrollbar-width: none;
}

.cdl-section-tab {
    white-space: nowrap;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--cdl-text);
    text-decoration: none;
    transition: all 0.15s ease;
}

    .cdl-section-tab:hover {
        background: rgba(255,255,255,0.85);
    }

    .cdl-section-tab.active {
        background: rgba(199,154,99,0.10);
        border-color: rgba(199,154,99,0.25);
        color: var(--cdl-gold);
    }
