/* ===============================
   NAVBAR PROTÉGÉE – DASHBOARD
================================ */

.cl-dash-nav-wrapper {
    width: 100%;
    background: #004366;
}

.cl-dash-nav {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Bande du haut : onglets */
.cl-dash-nav-top {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.cl-dash-nav-tabs {
    display: flex;
    flex: 1;
}

.cl-dash-tab {
    flex: 1;
    padding: 0.85rem 1rem;
    background: #0b567b;
    border: none;
    outline: none;
    color: #e5f4fb;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cl-dash-tab:first-child {
    background: #004366;
    text-align: left;
    padding-left: 2.2rem;
}

.cl-dash-tab-active {
    background: #004366;
}

/* Bande du bas : Mon Occasion en Or */
.cl-dash-nav-bottom {
    width: 100%;
}

.cl-dash-gold-btn {
    width: 100%;
    text-align: center;
    border-radius: 0;
    /* cohérent avec ton btn-gold */
    font-size: 0.9rem;
}

/* =========================================
   BANDEAU TABLEAU DE BORD — VERSION PREMIUM
========================================= */

.cl-dash-header-strip {
    background: #edf3f7;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.cl-dash-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cl-dash-title-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.cl-dash-title-link:hover {
    text-decoration: underline;
}

.cl-dash-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.03em;
}

/* Bloc utilisateur compact */
.cl-dash-user-box {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.cl-dash-user-email {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

/* Bouton logout */
.cl-dash-logout {
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #004366;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.cl-dash-logout:hover {
    background: #03517e;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
    .cl-dash-header-inner {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .cl-dash-user-box {
        justify-content: center;
    }
}



/* Responsive */
@media (max-width: 991px) {
    .cl-dash-tab {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .cl-dash-tab {
        font-size: 0.75rem;
    }
}