/* /App.razor.rz.scp.css */
/* ========================================
   APP.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Pages Unauthorized & Error 404
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* UNAUTHORIZED PAGE Mobile */
.unauthorized-container[b-gjovqoyqsm] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
}

.unauthorized-card[b-gjovqoyqsm] {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.3s ease-in;
}

.unauthorized-card h2[b-gjovqoyqsm] {
    color: var(--forest-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.unauthorized-card p[b-gjovqoyqsm] {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.unauthorized-actions[b-gjovqoyqsm] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.btn-forest-primary[b-gjovqoyqsm] {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
    min-height: var(--touch-target-min);
    width: 100%;
}

.btn-forest-primary:hover[b-gjovqoyqsm] {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.btn-forest-secondary[b-gjovqoyqsm] {
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--forest-primary);
    border: 2px solid var(--forest-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
    width: 100%;
}

.btn-forest-secondary:hover[b-gjovqoyqsm] {
    border: 2px solid var(--sage-light);
    color: var(--forest-primary);
    background: var(--sage-light);
    transform: translateY(-2px);
}

/* PAGE 404 - STYLE FOREST Mobile */
.error-container-forest[b-gjovqoyqsm] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
}

.error-card-forest[b-gjovqoyqsm] {
    background: var(--neutral-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 2rem 1.5rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-subtle);
    animation: fadeIn 0.4s ease;
}

.error-logo-forest[b-gjovqoyqsm] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.error-logo-img[b-gjovqoyqsm] {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
}

.error-title-forest[b-gjovqoyqsm] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.error-subtitle-forest[b-gjovqoyqsm] {
    font-size: 1rem;
    color: var(--forest-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-code-forest[b-gjovqoyqsm] {
    font-size: 6rem;
    font-weight: 900;
    color: var(--sage-light);
    line-height: 1;
    margin: 1rem 0 2rem;
    opacity: 0.5;
    user-select: none;
    -webkit-text-stroke: 1px black;
}

.error-actions-forest[b-gjovqoyqsm] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    .error-container-forest[b-gjovqoyqsm] {
        padding: 2rem;
    }

    .error-card-forest[b-gjovqoyqsm] {
        padding: 2.5rem;
    }

    .error-title-forest[b-gjovqoyqsm] {
        font-size: 2.2rem;
    }

    .error-subtitle-forest[b-gjovqoyqsm] {
        font-size: 1.05rem;
    }

    .error-code-forest[b-gjovqoyqsm] {
        font-size: 7rem;
    }

    .error-logo-forest[b-gjovqoyqsm] {
        width: 90px;
        height: 90px;
    }

    .error-logo-img[b-gjovqoyqsm] {
        width: 63px;
        height: 63px;
    }

    .error-actions-forest[b-gjovqoyqsm] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    .error-card-forest[b-gjovqoyqsm] {
        padding: 3rem 2rem;
    }

    .error-title-forest[b-gjovqoyqsm] {
        font-size: 2.5rem;
    }

    .error-subtitle-forest[b-gjovqoyqsm] {
        font-size: 1.1rem;
    }

    .error-code-forest[b-gjovqoyqsm] {
        font-size: 8rem;
    }

    .error-logo-forest[b-gjovqoyqsm] {
        width: 100px;
        height: 100px;
    }

    .error-logo-img[b-gjovqoyqsm] {
        width: 70px;
        height: 70px;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .error-card-forest[b-gjovqoyqsm] {
        animation-duration: 0.1s !important;
    }
}
/* /Components/LanguageToggle.razor.rz.scp.css */
/* ========================================
   LANGUAGETOGGLE.RAZOR.CSS - MOBILE-FIRST
   Toggle FR/EN pour changer de langue
   ======================================== */

/* Bouton toggle langue */
.language-toggle[b-jpkwhbnhw0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #ffffff;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 36px;
    min-height: 32px;
    margin-right: 0.5rem;
}

.language-toggle:hover[b-jpkwhbnhw0] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.language-toggle:active[b-jpkwhbnhw0] {
    transform: translateY(0);
}

.language-toggle span[b-jpkwhbnhw0] {
    display: block;
}

/* ========================================
   TABLET (640px+)
   ======================================== */
@media (min-width: 640px) {
    .language-toggle[b-jpkwhbnhw0] {
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
        min-width: 40px;
    }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .language-toggle[b-jpkwhbnhw0] {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
/* Layout vide - Aucun header, aucune navigation */

.layout-empty[b-8qzta06tyj] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-full[b-8qzta06tyj] {
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ========================================
   MAINLAYOUT.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Layout wrapper */
.layout-wrapper[b-9tftvw6hga] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--sage-light);
}

/* Overlay fermeture menu */
.menu-overlay[b-9tftvw6hga] {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-overlay.show[b-9tftvw6hga] {
    opacity: 1;
    visibility: visible;
}

/* Header mobile-first */
.header-nature[b-9tftvw6hga] {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    box-shadow: 0 4px 20px var(--shadow-medium);
    border-radius: 0 0 12px 12px;
    padding: 0.8rem 0.5rem;
    position: relative;
    z-index: 1000;
}

.header-content[b-9tftvw6hga] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left[b-9tftvw6hga] {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.header-right[b-9tftvw6hga] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand[b-9tftvw6hga] {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-right: 0.3rem;
}

/* Logo mobile 50px */
.navbar-logo[b-9tftvw6hga] {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Titre mobile */
[b-9tftvw6hga] .navbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-white);
    letter-spacing: -0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

[b-9tftvw6hga] .navbar-title:hover {
    color: var(--sage-light);
    transform: translateX(2px);
}

/* Hamburger mobile visible par défaut */
.icon-burger[b-9tftvw6hga] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    color: var(--neutral-white);
    padding: 0.1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    font-size: 1.2rem;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

.icon-burger:hover[b-9tftvw6hga] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.icon-burger.open[b-9tftvw6hga] {
    background: var(--forest-accent);
    border-color: var(--forest-light);
    transform: rotate(90deg) scale(1.05);
}

.icon-burger:focus[b-9tftvw6hga] {
    outline: 2px solid var(--sage-light);
    outline-offset: 2px;
}

/* Menu mobile slide-in */
.nav-mobile[b-9tftvw6hga] {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(145deg, var(--neutral-white) 0%, var(--neutral-gray) 100%);
    box-shadow: 4px 0 20px var(--shadow-strong);
    z-index: 1001;
    transition: left 0.4s var(--transition-smooth);
    overflow-y: auto;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    will-change: transform;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.nav-mobile.menu-open[b-9tftvw6hga] {
    left: 0;
}

.nav-mobile.menu-closed[b-9tftvw6hga] {
    left: -100%;
}

.nav-mobile-content[b-9tftvw6hga] {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-mobile-header[b-9tftvw6hga] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-subtle);
}

.nav-mobile-title[b-9tftvw6hga] {
    color: var(--forest-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Actions header menu mobile (langue + close) */
.nav-mobile-actions[b-9tftvw6hga] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bouton fermeture touch-friendly (44px minimum) */
.close-menu-btn[b-9tftvw6hga] {
    background: var(--forest-light);
    border: none;
    border-radius: 50%;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--forest-dark);
    font-weight: bold;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.15);
}

.close-menu-btn:hover[b-9tftvw6hga] {
    background: var(--forest-accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(26, 61, 10, 0.25);
}

.close-menu-btn:active[b-9tftvw6hga] {
    transform: scale(0.95);
}

.close-menu-btn:focus[b-9tftvw6hga] {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
}

.menu-close[b-9tftvw6hga] {
    background: var(--forest-light);
    border: none;
    border-radius: 50%;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--forest-dark);
    font-weight: bold;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.15);
}

.menu-close:hover[b-9tftvw6hga] {
    background: var(--forest-accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(26, 61, 10, 0.25);
}

.menu-close:active[b-9tftvw6hga] {
    transform: scale(0.95);
}

.menu-close:focus[b-9tftvw6hga] {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
}

/* Liste navigation mobile */
.nav-grid-mobile[b-9tftvw6hga] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

/* Cards menu mobile (appliqué sur NavLink via ::deep) */
[b-9tftvw6hga] .menu-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.8rem;
    background: var(--neutral-white);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--forest-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.06);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: var(--touch-target-min);
}

[b-9tftvw6hga] .menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

[b-9tftvw6hga] .menu-card:hover {
    border-color: var(--forest-accent);
    color: var(--neutral-white);
    transform: translateX(8px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

[b-9tftvw6hga] .menu-card:hover::before {
    left: 0;
}

[b-9tftvw6hga] .menu-card.active {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border-color: var(--forest-medium);
    transform: translateX(4px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

[b-9tftvw6hga] .menu-card.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--neutral-white);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

[b-9tftvw6hga] .menu-card .icon-container,
[b-9tftvw6hga] .menu-card .label-text,
[b-9tftvw6hga] .menu-card .nav-arrow {
    position: relative;
    z-index: 1;
}

[b-9tftvw6hga] .menu-card .icon-container {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

[b-9tftvw6hga] .menu-card:hover .icon-container,
[b-9tftvw6hga] .menu-card.active .icon-container {
    opacity: 1;
    transform: scale(1.1);
}

[b-9tftvw6hga] .nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: auto;
}

[b-9tftvw6hga] .menu-card:hover .nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

[b-9tftvw6hga] .menu-card:focus {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2);
}

/* Icons et labels */
.icon-container[b-9tftvw6hga] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.label-text[b-9tftvw6hga] {
    flex: 1;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Contenu principal mobile */
.main-content[b-9tftvw6hga] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-subtle);
}

/* Focus states */
.nav-card:focus[b-9tftvw6hga] {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2);
}

/* Performance optimizations */
.nav-mobile[b-9tftvw6hga],
.menu-overlay[b-9tftvw6hga] {
    will-change: transform, opacity;
    contain: layout style paint;
}

/* Désactivation sélection texte */
[b-9tftvw6hga] .menu-card,
.menu-close[b-9tftvw6hga],
.close-menu-btn[b-9tftvw6hga],
[b-9tftvw6hga] .nav-arrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Header légèrement agrandi */
    .header-nature[b-9tftvw6hga] {
        padding: 1rem 1.5rem;
        border-radius: 0 0 14px 14px;
    }

    .header-left[b-9tftvw6hga] {
        gap: 0.4rem;
    }

    .navbar-brand[b-9tftvw6hga] {
        gap: 0.4rem;
    }

    /* Logo 60px */
    .navbar-logo[b-9tftvw6hga] {
        width: 60px;
        height: 60px;
    }

    /* Titre 1.4rem */
    [b-9tftvw6hga] .navbar-title {
        font-size: 1.4rem;
        letter-spacing: -0.4px;
    }

    /* Menu mobile élargi */
    .nav-mobile[b-9tftvw6hga] {
        width: 85%;
        max-width: 320px;
    }

    .nav-mobile-content[b-9tftvw6hga] {
        padding: 1.5rem;
    }

    .nav-mobile-title[b-9tftvw6hga] {
        font-size: 1.3rem;
    }

    /* Cards menu plus grandes */
    [b-9tftvw6hga] .menu-card {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }

    /* Main content padding augmenté */
    .main-content[b-9tftvw6hga] {
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Header desktop */
    .header-nature[b-9tftvw6hga] {
        padding: 1.2rem 2rem;
        border-radius: 0 0 16px 16px;
    }

    .header-left[b-9tftvw6hga] {
        gap: 0.5rem;
    }

    .navbar-brand[b-9tftvw6hga] {
        gap: 0.5rem;
    }

    /* Logo 100px desktop */
    .navbar-logo[b-9tftvw6hga] {
        width: 100px;
        height: 100px;
    }

    /* Titre 1.75rem desktop */
    [b-9tftvw6hga] .navbar-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    /* Main content desktop */
    .main-content[b-9tftvw6hga] {
        margin: var(--spacing-md);
        padding: var(--spacing-xl);
    }
}




/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .nav-mobile[b-9tftvw6hga],
    .menu-overlay[b-9tftvw6hga],
    [b-9tftvw6hga] .menu-card,
    [b-9tftvw6hga] .nav-card,
    .close-menu-btn[b-9tftvw6hga],
    .menu-close[b-9tftvw6hga],
    .icon-burger[b-9tftvw6hga] {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
    [b-9tftvw6hga] .menu-card,
    [b-9tftvw6hga] .nav-card {
        border: 2px solid var(--forest-dark);
    }

    [b-9tftvw6hga] .menu-card:hover,
    [b-9tftvw6hga] .menu-card.active,
    [b-9tftvw6hga] .nav-card:hover,
    [b-9tftvw6hga] .nav-card.active {
        border: 2px solid var(--neutral-white);
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .nav-mobile[b-9tftvw6hga] {
        background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
        border: 1px solid rgba(127, 176, 105, 0.3);
    }

    [b-9tftvw6hga] .menu-card {
        background: #2a2a2a;
        color: var(--neutral-white);
        border-color: rgba(127, 176, 105, 0.2);
    }

    .nav-mobile-title[b-9tftvw6hga] {
        color: var(--neutral-white);
    }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* ========================================
   PUBLICLAYOUT.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Layout public (non authentifié)
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Layout wrapper */
.layout-accueil[b-kncw0uhjqw] {
    min-height: 100vh;
    background: var(--sage-light);
}

/* Navbar public mobile-first (sticky) */
.navbar-accueil[b-kncw0uhjqw] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    box-shadow: 0 4px 20px var(--shadow-medium);
    padding: 0.8rem 0;
}

.navbar-container[b-kncw0uhjqw] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left[b-kncw0uhjqw] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar-brand[b-kncw0uhjqw] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Logo mobile 50px */
.navbar-logo[b-kncw0uhjqw] {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Titre mobile */
[b-kncw0uhjqw] .navbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-white);
    letter-spacing: -0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

[b-kncw0uhjqw] .navbar-title:hover {
    color: var(--sage-light);
    transform: translateX(2px);
}

/* Menu desktop masqué mobile */
.navbar-menu[b-kncw0uhjqw] {
    display: none;
}

/* Navbar right (icônes) masqué mobile */
.navbar-right[b-kncw0uhjqw] {
    display: none;
}

/* Menu burger mobile visible par défaut */
.menu-burger[b-kncw0uhjqw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    color: var(--neutral-white);
    padding: 0.6rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    font-size: 1.2rem;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

.menu-burger:hover[b-kncw0uhjqw] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.menu-burger.open[b-kncw0uhjqw] {
    background: var(--forest-accent);
    border-color: var(--forest-light);
    transform: rotate(90deg) scale(1.05);
}

.menu-burger:focus[b-kncw0uhjqw] {
    outline: 2px solid var(--sage-light);
    outline-offset: 2px;
}

/* Menu mobile panel slide-in */
.menu-mobile-overlay[b-kncw0uhjqw] {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(2px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-mobile-overlay.show[b-kncw0uhjqw] {
    opacity: 1;
    visibility: visible;
}

.menu-mobile-panel[b-kncw0uhjqw] {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(145deg, var(--neutral-white) 0%, var(--neutral-gray) 100%);
    box-shadow: 4px 0 20px var(--shadow-strong);
    z-index: 1999;
    transition: left 0.4s var(--transition-smooth);
    overflow-y: auto;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    will-change: transform;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    contain: layout style paint;
}

.menu-mobile-panel.show[b-kncw0uhjqw] {
    left: 0;
}

.menu-mobile-content[b-kncw0uhjqw] {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-mobile-header[b-kncw0uhjqw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-subtle);
}

.menu-mobile-title[b-kncw0uhjqw] {
    color: var(--forest-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Actions header menu mobile (langue + close) */
.menu-mobile-actions[b-kncw0uhjqw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Style spécial pour le toggle dans le menu mobile */
.menu-mobile-actions[b-kncw0uhjqw]  .language-toggle {
    background: var(--forest-light);
    border-color: var(--forest-medium);
    color: var(--forest-dark);
}

.menu-mobile-actions[b-kncw0uhjqw]  .language-toggle:hover {
    background: var(--forest-medium);
    color: var(--neutral-white);
}

/* Bouton fermeture touch-friendly (44px) */
.menu-close[b-kncw0uhjqw] {
    background: var(--forest-light);
    border: none;
    border-radius: 50%;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--forest-dark);
    font-weight: bold;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.15);
}

.menu-close:hover[b-kncw0uhjqw] {
    background: var(--forest-accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(26, 61, 10, 0.25);
}

.menu-close:active[b-kncw0uhjqw] {
    transform: scale(0.95);
}

.menu-close:focus[b-kncw0uhjqw] {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
}

.menu-mobile-links[b-kncw0uhjqw] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.menu-mobile-links li[b-kncw0uhjqw] {
    margin: 0;
}

.menu-mobile-links .btn-connexion-mobile[b-kncw0uhjqw] {
    margin-top: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Cards menu mobile (NavLink via ::deep) */
[b-kncw0uhjqw] .menu-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.8rem;
    background: var(--neutral-white);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--forest-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.06);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: var(--touch-target-min);
}

[b-kncw0uhjqw] .menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

[b-kncw0uhjqw] .menu-card:hover {
    border-color: var(--forest-accent);
    color: var(--neutral-white);
    transform: translateX(8px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

[b-kncw0uhjqw] .menu-card:hover::before {
    left: 0;
}

[b-kncw0uhjqw] .menu-card.active {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border-color: var(--forest-medium);
    transform: translateX(4px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

[b-kncw0uhjqw] .menu-card.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--neutral-white);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

[b-kncw0uhjqw] .menu-card .icon-container,
[b-kncw0uhjqw] .menu-card .label-text,
[b-kncw0uhjqw] .menu-card .nav-arrow {
    position: relative;
    z-index: 1;
}

[b-kncw0uhjqw] .menu-card .icon-container {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

[b-kncw0uhjqw] .menu-card:hover .icon-container,
[b-kncw0uhjqw] .menu-card.active .icon-container {
    opacity: 1;
    transform: scale(1.1);
}

[b-kncw0uhjqw] .nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: auto;
}

[b-kncw0uhjqw] .menu-card:hover .nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

[b-kncw0uhjqw] .menu-card:focus {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2);
}

/* Icône paramètres (NavLink) */
[b-kncw0uhjqw] .icon-parametre {
    color: var(--neutral-white);
    padding: 0.6rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[b-kncw0uhjqw] .icon-parametre:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: var(--neutral-white);
}

[b-kncw0uhjqw] .icon-parametre:focus {
    outline: 2px solid var(--sage-light);
    outline-offset: 2px;
}

/* Liens navbar desktop (NavLink) */
[b-kncw0uhjqw] .navbar-link {
    color: var(--neutral-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding: 0.5rem 1rem;
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
}

[b-kncw0uhjqw] .navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--sage-light);
    transition: width 0.3s ease;
}

[b-kncw0uhjqw] .navbar-link:hover {
    color: var(--sage-light);
}

[b-kncw0uhjqw] .navbar-link:hover::after {
    width: calc(100% - 2rem);
}

[b-kncw0uhjqw] .navbar-link.active {
    color: var(--sage-light);
}

[b-kncw0uhjqw] .navbar-link.active::after {
    width: calc(100% - 2rem);
    background: var(--neutral-white);
    height: 3px;
}

/* Bouton connexion desktop */
[b-kncw0uhjqw] .btn-connexion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-white);
    color: var(--forest-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-height: var(--touch-target-min);
}

[b-kncw0uhjqw] .btn-connexion:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    color: var(--forest-primary);
}

/* Icons et labels */
.icon-container[b-kncw0uhjqw] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.label-text[b-kncw0uhjqw] {
    flex: 1;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Contenu principal mobile */
.main-content[b-kncw0uhjqw] {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-subtle);
    min-height: calc(100vh - 300px);
}

/* Footer public */
.footer-accueil[b-kncw0uhjqw] {
    background: var(--forest-primary);
    color: var(--neutral-white);
    padding: 1.5rem;
    text-align: center;
}

.footer-container[b-kncw0uhjqw] {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-version[b-kncw0uhjqw] {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--sage-light);
}

.footer-copyright[b-kncw0uhjqw] {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Désactivation sélection texte */
[b-kncw0uhjqw] .menu-card,
.menu-close[b-kncw0uhjqw],
[b-kncw0uhjqw] .nav-arrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Navbar padding élargi */
    .navbar-accueil[b-kncw0uhjqw] {
        padding: 1rem 0;
    }

    .navbar-container[b-kncw0uhjqw] {
        padding: 0 1.5rem;
    }

    .navbar-left[b-kncw0uhjqw] {
        gap: 0.4rem;
    }

    .navbar-brand[b-kncw0uhjqw] {
        gap: 0.4rem;
    }

    /* Logo 60px */
    .navbar-logo[b-kncw0uhjqw] {
        width: 60px;
        height: 60px;
    }

    /* Titre 1.4rem */
    [b-kncw0uhjqw] .navbar-title {
        font-size: 1.4rem;
        letter-spacing: -0.4px;
    }

    /* Menu mobile élargi */
    .menu-mobile-panel[b-kncw0uhjqw] {
        width: 85%;
        max-width: 320px;
    }

    .menu-mobile-content[b-kncw0uhjqw] {
        padding: 1.5rem;
    }

    .menu-mobile-title[b-kncw0uhjqw] {
        font-size: 1.3rem;
    }

    /* Cards menu plus grandes */
    [b-kncw0uhjqw] .menu-card {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }

    /* Main content padding augmenté */
    .main-content[b-kncw0uhjqw] {
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }

    /* Footer padding augmenté */
    .footer-accueil[b-kncw0uhjqw] {
        padding: 2rem;
    }

    .footer-version[b-kncw0uhjqw] {
        font-size: 0.9rem;
    }

    .footer-copyright[b-kncw0uhjqw] {
        font-size: 0.85rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Navbar desktop */
    .navbar-container[b-kncw0uhjqw] {
        padding: 0 2rem;
    }

    .navbar-left[b-kncw0uhjqw] {
        gap: 0.5rem;
    }

    .navbar-brand[b-kncw0uhjqw] {
        gap: 0.5rem;
    }

    /* Logo 100px desktop */
    .navbar-logo[b-kncw0uhjqw] {
        width: 100px;
        height: 100px;
    }

    /* Titre 1.75rem desktop */
    [b-kncw0uhjqw] .navbar-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    /* Hamburger masqué desktop */
    .menu-burger[b-kncw0uhjqw] {
        display: none;
    }

    /* Menu desktop visible */
    .navbar-menu[b-kncw0uhjqw] {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    /* Navbar right visible (icône paramètres) */
    .navbar-right[b-kncw0uhjqw] {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    /* Main content desktop */
    .main-content[b-kncw0uhjqw] {
        margin: var(--spacing-md);
        padding: var(--spacing-xl);
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Main content max-width */
    .main-content[b-kncw0uhjqw] {
        max-width: 1400px;
        margin-inline: auto;
    }

    /* Menu gap élargi */
    .navbar-menu[b-kncw0uhjqw] {
        gap: 2.5rem;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    [b-kncw0uhjqw] .menu-card,
    .menu-mobile-panel[b-kncw0uhjqw],
    .menu-mobile-overlay[b-kncw0uhjqw],
    .menu-burger[b-kncw0uhjqw],
    [b-kncw0uhjqw] .navbar-link,
    .btn-connexion[b-kncw0uhjqw] {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
    [b-kncw0uhjqw] .menu-card {
        border: 2px solid var(--forest-dark);
    }

    [b-kncw0uhjqw] .menu-card:hover,
    [b-kncw0uhjqw] .menu-card.active {
        border: 2px solid var(--neutral-white);
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .menu-mobile-panel[b-kncw0uhjqw] {
        background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
        border: 1px solid rgba(127, 176, 105, 0.3);
    }

    [b-kncw0uhjqw] .menu-card {
        background: #2a2a2a;
        color: var(--neutral-white);
        border-color: rgba(127, 176, 105, 0.2);
    }

    .menu-mobile-title[b-kncw0uhjqw] {
        color: var(--neutral-white);
    }
}
/* /Components/LoginDisplay.razor.rz.scp.css */
/* ========================================
   LOGINDISPLAY.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Composant User Menu Dropdown
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* CONTAINER - Dropdown positioning */
.user-menu-container[b-lkwptd6mus] {
    position: relative;
    display: inline-block;
}

/* BADGE UTILISATEUR - Icône seule mobile */
.user-badge-dark[b-lkwptd6mus] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.6rem;
    background: #2d5016;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: var(--neutral-white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

    .user-badge-dark:hover[b-lkwptd6mus] {
        background: #1a3d0a;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }

    .user-badge-dark:active[b-lkwptd6mus] {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .user-badge-dark > i:first-child[b-lkwptd6mus] {
        font-size: 1.4rem;
        margin: 0;
    }

/* Email caché sur mobile */
.user-email[b-lkwptd6mus] {
    display: none;
}

/* Flèche dropdown cachée sur mobile */
.dropdown-arrow[b-lkwptd6mus] {
    display: none;
}

    .dropdown-arrow.open[b-lkwptd6mus] {
        transform: rotate(180deg);
    }

/* DROPDOWN OVERLAY - Fermeture au clic extérieur */
.dropdown-overlay[b-lkwptd6mus] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
    cursor: default;
}

/* DROPDOWN MENU - Liste élégante mobile */
.user-dropdown[b-lkwptd6mus] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    max-width: calc(100vw - 15px);
    background: var(--neutral-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: dropdownFadeIn 0.2s ease;
    overflow: hidden;
}

.dropdown-header[b-lkwptd6mus] {
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .dropdown-header i[b-lkwptd6mus] {
        font-size: 1.3rem;
    }

.dropdown-email[b-lkwptd6mus] {
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-divider[b-lkwptd6mus] {
    height: 1px;
    background: var(--border-subtle);
}

.dropdown-item[b-lkwptd6mus] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    color: var(--forest-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: var(--touch-target-min);
}

    .dropdown-item i[b-lkwptd6mus] {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .dropdown-item span[b-lkwptd6mus] {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .dropdown-item:hover[b-lkwptd6mus] {
        background: var(--sage-light);
        color: var(--forest-primary);
    }

    .dropdown-item.logout[b-lkwptd6mus] {
        color: #dc3545;
    }

        .dropdown-item.logout:hover[b-lkwptd6mus] {
            background: rgba(220, 53, 69, 0.1);
            color: #c82333;
        }

/* BOUTON SE CONNECTER - Icône seule mobile */
.btn-login-dark[b-lkwptd6mus] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.6rem;
    background: #2d5016;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--neutral-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

    .btn-login-dark:hover[b-lkwptd6mus] {
        background: #1a3d0a;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-1px);
        color: var(--neutral-white);
    }

    .btn-login-dark:active[b-lkwptd6mus] {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .btn-login-dark i[b-lkwptd6mus] {
        font-size: 1.3rem;
        margin: 0;
    }

    /* Texte caché sur mobile */
    .btn-login-dark span[b-lkwptd6mus] {
        display: none;
    }


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Badge : affiche email + flèche */
    .user-badge-dark[b-lkwptd6mus] {
        gap: 0.6rem;
        padding: 0.6rem 1rem;
    }

    .user-badge-dark > i:first-child[b-lkwptd6mus] {
        font-size: 1.2rem;
    }

    .user-email[b-lkwptd6mus] {
        display: block;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dropdown-arrow[b-lkwptd6mus] {
        display: block;
        font-size: 0.75rem;
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    /* Dropdown : plus large */
    .user-dropdown[b-lkwptd6mus] {
        min-width: 240px;
    }

    .dropdown-header[b-lkwptd6mus] {
        padding: 1rem;
    }

        .dropdown-header i[b-lkwptd6mus] {
            font-size: 1.5rem;
        }

    .dropdown-email[b-lkwptd6mus] {
        font-size: 0.9rem;
    }

    .dropdown-item[b-lkwptd6mus] {
        padding: 0.75rem 1rem;
    }

        .dropdown-item span[b-lkwptd6mus] {
            font-size: 0.9rem;
        }

    /* Bouton login : affiche texte */
    .btn-login-dark[b-lkwptd6mus] {
        gap: 0.5rem;
        padding: 0.6rem 1.25rem;
    }

        .btn-login-dark span[b-lkwptd6mus] {
            display: inline;
        }

        .btn-login-dark i[b-lkwptd6mus] {
            font-size: 1.1rem;
        }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Optionnel : ajustements desktop si nécessaire */
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large */
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .user-badge-dark[b-lkwptd6mus],
    .btn-login-dark[b-lkwptd6mus],
    .dropdown-arrow[b-lkwptd6mus] {
        transition-duration: 0.1s !important;
    }

    .user-dropdown[b-lkwptd6mus] {
        animation-duration: 0.1s !important;
    }
}
/* /Components/VersionBadge.razor.rz.scp.css */
/* ========================================
   VERSIONBADGE.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Composant Version Badge + Changelog Modal
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* BADGE DE VERSION Mobile */
.version-badge[b-8zturpecui] {
    background: var(--sage-light);
    color: #78350f;
    border: 2px solid var(--sage-light);
    border-radius: 20px;
    padding: 0.35rem 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 3px 10px rgba(212, 241, 201, 0.4), 0 0 0 0 rgba(212, 241, 201, 0.7);
    margin-left: 0.3rem;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    min-height: var(--touch-target-min);
}

    .version-badge[b-8zturpecui]::before {
        margin-right: 0.4rem;
        font-size: 1rem;
    }

    .version-badge:hover[b-8zturpecui] {
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 6px 20px rgba(212, 241, 201, 0.6), 0 0 0 4px rgba(212, 241, 201, 0.2);
        animation: none;
    }

    .version-badge:active[b-8zturpecui] {
        transform: translateY(-1px) scale(1.05);
    }

.version-text[b-8zturpecui] {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    color: var(--forest-dark);
}

/* MODAL CHANGELOG */
.changelog-overlay[b-8zturpecui] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    animation: fadeIn 0.2s ease;
    backdrop-filter: blur(4px);
}

/* Changelog Modal Mobile */
.changelog-modal[b-8zturpecui] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--neutral-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 100vw;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

/* Header Modal Mobile */
.changelog-header[b-8zturpecui] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--forest-accent);
}

    .changelog-header h2[b-8zturpecui] {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

        .changelog-header h2 i[b-8zturpecui] {
            font-size: 1.15rem;
        }

/* Close button - Touch target compliant */
.changelog-close[b-8zturpecui] {
    background: transparent;
    border: none;
    color: var(--neutral-white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

    .changelog-close:hover[b-8zturpecui] {
        background: rgba(255, 255, 255, 0.2);
    }

/* Content Modal Mobile */
.changelog-content[b-8zturpecui] {
    padding: 1.25rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Version Header - Vertical Mobile */
.changelog-version-header[b-8zturpecui] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-subtle);
}

.changelog-version-number[b-8zturpecui] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--forest-primary);
    font-family: 'Courier New', monospace;
}

.changelog-version-date[b-8zturpecui] {
    font-size: 0.85rem;
    color: var(--forest-medium);
    font-weight: 500;
}

/* Changelog Sections */
.changelog-section[b-8zturpecui] {
    margin-bottom: 1.5rem;
}

.changelog-section-title[b-8zturpecui] {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--forest-dark);
}

.changelog-list[b-8zturpecui] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .changelog-list li[b-8zturpecui] {
        padding: 0.4rem 0 0.4rem 1.2rem;
        position: relative;
        color: #555;
        line-height: 1.6;
        font-size: 0.9rem;
    }

        .changelog-list li[b-8zturpecui]::before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: var(--forest-accent);
            font-weight: bold;
        }


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    .version-badge[b-8zturpecui] {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
        margin-left: 0.6rem;
    }

    .changelog-modal[b-8zturpecui] {
        width: 95%;
        max-width: 600px;
        border-radius: 16px;
    }

    .changelog-header[b-8zturpecui] {
        padding: 1.25rem 1.5rem;
    }

        .changelog-header h2[b-8zturpecui] {
            font-size: 1.35rem;
        }

    .changelog-close[b-8zturpecui] {
        font-size: 1.5rem;
    }

    .changelog-content[b-8zturpecui] {
        padding: 1.5rem;
        max-height: calc(85vh - 90px);
    }

    /* Version header - Horizontal */
    .changelog-version-header[b-8zturpecui] {
        flex-direction: row;
        align-items: center;
        gap: 0;
        margin-bottom: 2rem;
    }

    .changelog-version-number[b-8zturpecui] {
        font-size: 1.35rem;
    }

    .changelog-version-date[b-8zturpecui] {
        font-size: 0.9rem;
    }

    .changelog-section-title[b-8zturpecui] {
        font-size: 1.05rem;
    }

    .changelog-list li[b-8zturpecui] {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    .version-badge[b-8zturpecui] {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-left: 0.75rem;
    }

    .changelog-modal[b-8zturpecui] {
        max-width: 650px;
        border-radius: 20px;
        max-height: 85vh;
    }

    .changelog-header[b-8zturpecui] {
        padding: 1.5rem 2rem;
    }

        .changelog-header h2[b-8zturpecui] {
            font-size: 1.5rem;
        }

    .changelog-content[b-8zturpecui] {
        padding: 2rem;
        max-height: calc(85vh - 100px);
    }

    .changelog-version-number[b-8zturpecui] {
        font-size: 1.5rem;
    }

    .changelog-version-date[b-8zturpecui] {
        font-size: 0.95rem;
    }

    .changelog-section-title[b-8zturpecui] {
        font-size: 1.1rem;
    }

    .changelog-list li[b-8zturpecui] {
        font-size: 1rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large */
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .version-badge[b-8zturpecui] {
        animation: none !important;
    }

    .version-badge:hover[b-8zturpecui] {
        transform: none !important;
    }

    .changelog-overlay[b-8zturpecui],
    .changelog-modal[b-8zturpecui] {
        animation: none !important;
    }
}
/* /Pages/Accueil/Contact.razor.rz.scp.css */
/* ========================================
   CONTACT.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Contact publique
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Container principal centré */
.content-container[b-ush9cxe5on] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Titre page principal mobile */
.page-title[b-ush9cxe5on] {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Sous-titre page mobile */
.page-subtitle[b-ush9cxe5on] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* SECTION CONTACT Mobile */
.contact-section[b-ush9cxe5on] {
    min-height: auto;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--neutral-white) 100%);
    padding: 2rem 1rem;
}

/* Utilitaires layout déplacés vers utilities/layouts.css */

/* WRAPPER CONTACT Mobile - 1 col */
.contact-wrapper[b-ush9cxe5on] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* FORMULAIRE Mobile */
.contact-form-container[b-ush9cxe5on] {
    background: var(--neutral-white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(26, 61, 10, 0.08);
}

.contact-form .form-group[b-ush9cxe5on] {
    margin-bottom: 1.5rem;
}

.contact-form label[b-ush9cxe5on] {
    display: block;
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control[b-ush9cxe5on] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 16px; /* CRITIQUE : Évite zoom iOS */
    font-family: inherit;
    transition: all 0.3s var(--transition-smooth);
    background: var(--neutral-white);
    color: var(--forest-dark);
    min-height: var(--touch-target-min);
}

.contact-form .form-control:focus[b-ush9cxe5on] {
    outline: none;
    border-color: var(--forest-accent);
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.15);
}

.contact-form textarea.form-control[b-ush9cxe5on] {
    resize: vertical;
    min-height: 150px;
}

.contact-form .validation-message[b-ush9cxe5on] {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.btn-submit[b-ush9cxe5on] {
    background: linear-gradient(135deg, var(--forest-accent), var(--forest-light));
    color: var(--forest-dark);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(127, 176, 105, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover[b-ush9cxe5on] {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(127, 176, 105, 0.4);
}

.btn-submit:active[b-ush9cxe5on] {
    transform: translateY(-1px);
}

/* ALERT SUCCESS */
.alert-success[b-ush9cxe5on] {
    background: linear-gradient(135deg, var(--forest-light), var(--sage-light));
    border: 2px solid var(--forest-accent);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--forest-dark);
}

.alert-success i[b-ush9cxe5on] {
    font-size: 3rem;
    color: var(--forest-accent);
    display: block;
    margin-bottom: 1rem;
}

.alert-success p[b-ush9cxe5on] {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* INFORMATIONS CONTACT */
.contact-info[b-ush9cxe5on] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card[b-ush9cxe5on] {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(26, 61, 10, 0.08);
    transition: all 0.3s var(--transition-smooth);
}

.info-card:hover[b-ush9cxe5on] {
    transform: translateY(-4px);
    border-color: var(--forest-accent);
    box-shadow: 0 8px 24px rgba(26, 61, 10, 0.12);
}

.info-icon[b-ush9cxe5on] {
    font-size: 2.5rem;
    color: var(--forest-accent);
    margin-bottom: 1rem;
    display: block;
}

.info-card h3[b-ush9cxe5on] {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.5rem;
}

.info-card p[b-ush9cxe5on] {
    font-size: 1rem;
    color: var(--forest-medium);
    margin: 0;
    line-height: 1.6;
}



/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Container padding augmenté */
    .content-container[b-ush9cxe5on] {
        padding: 0 1.5rem;
    }

    /* Titres agrandis */
    .page-title[b-ush9cxe5on] {
        font-size: 2.2rem;
    }

    .page-subtitle[b-ush9cxe5on] {
        font-size: 1.1rem;
    }

    /* Section padding augmenté */
    .contact-section[b-ush9cxe5on] {
        padding: 3rem 1.5rem;
    }

    /* Form container padding */
    .contact-form-container[b-ush9cxe5on] {
        padding: 2rem;
    }

    /* Info cards horizontal */
    .contact-info[b-ush9cxe5on] {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card[b-ush9cxe5on] {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 200px;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container max-width */
    .content-container[b-ush9cxe5on] {
        max-width: 1200px;
        padding: 0 2rem;
    }

    /* Titres desktop */
    .page-title[b-ush9cxe5on] {
        font-size: 3rem;
    }

    .page-subtitle[b-ush9cxe5on] {
        font-size: 1.3rem;
        margin-bottom: 4rem;
    }

    /* Section padding max */
    .contact-section[b-ush9cxe5on] {
        padding: 4rem 2rem;
        min-height: calc(100vh - 180px);
    }

    /* Wrapper 2 cols (form + info) */
    .contact-wrapper[b-ush9cxe5on] {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    /* Form container padding max */
    .contact-form-container[b-ush9cxe5on] {
        padding: 3rem;
    }

    /* Info cards vertical desktop */
    .contact-info[b-ush9cxe5on] {
        flex-direction: column;
    }

    .info-card[b-ush9cxe5on] {
        flex: 1 1 auto;
        padding: 2rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large */
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .info-card[b-ush9cxe5on],
    .btn-submit[b-ush9cxe5on] {
        transition-duration: 0.1s !important;
    }
}
/* /Pages/Accueil/Fonctionnalites.razor.rz.scp.css */
/* ========================================
   FONCTIONNALITES.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Fonctionnalités publique
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Container principal centré */
.content-container[b-ajzmbx5l9e] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Titre page principal mobile */
.page-title[b-ajzmbx5l9e] {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Sous-titre page mobile */
.page-subtitle[b-ajzmbx5l9e] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* SECTION FONCTIONNALITES Mobile */
.fonctionnalites-section[b-ajzmbx5l9e] {
    min-height: auto;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--neutral-white) 100%);
    padding: 2rem 1rem;
}

/* Utilitaires layout déplacés vers utilities/layouts.css */

/* GRILLE FONCTIONNALITES Mobile - 1 col */
.features-grid[b-ajzmbx5l9e] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card[b-ajzmbx5l9e] {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(26, 61, 10, 0.08);
}

.feature-card:hover[b-ajzmbx5l9e] {
    transform: translateY(-8px);
    border-color: var(--forest-accent);
    box-shadow: 0 12px 32px rgba(26, 61, 10, 0.15);
}

.feature-icon[b-ajzmbx5l9e] {
    font-size: 2.8rem;
    color: var(--forest-accent);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3[b-ajzmbx5l9e] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.75rem;
}

.feature-card p[b-ajzmbx5l9e] {
    font-size: 0.95rem;
    color: var(--forest-medium);
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Container padding augmenté */
    .content-container[b-ajzmbx5l9e] {
        padding: 0 1.5rem;
    }

    /* Titres agrandis */
    .page-title[b-ajzmbx5l9e] {
        font-size: 2.2rem;
    }

    .page-subtitle[b-ajzmbx5l9e] {
        font-size: 1.1rem;
    }

    /* Section padding augmenté */
    .fonctionnalites-section[b-ajzmbx5l9e] {
        padding: 3rem 1.5rem;
    }

    /* Grille 2 cols */
    .features-grid[b-ajzmbx5l9e] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        margin-top: 2.5rem;
    }

    .feature-card[b-ajzmbx5l9e] {
        padding: 2rem;
    }

    .feature-icon[b-ajzmbx5l9e] {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .feature-card h3[b-ajzmbx5l9e] {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p[b-ajzmbx5l9e] {
        font-size: 1rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container max-width */
    .content-container[b-ajzmbx5l9e] {
        max-width: 1200px;
        padding: 0 2rem;
    }

    /* Titres desktop */
    .page-title[b-ajzmbx5l9e] {
        font-size: 3rem;
    }

    .page-subtitle[b-ajzmbx5l9e] {
        font-size: 1.3rem;
        margin-bottom: 4rem;
    }

    /* Section padding max */
    .fonctionnalites-section[b-ajzmbx5l9e] {
        padding: 4rem 2rem;
        min-height: calc(100vh - 180px);
    }

    /* Grille 3 cols */
    .features-grid[b-ajzmbx5l9e] {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-card[b-ajzmbx5l9e] {
        padding: 2.5rem;
    }

    .feature-icon[b-ajzmbx5l9e] {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3[b-ajzmbx5l9e] {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large */
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .feature-card[b-ajzmbx5l9e] {
        transition-duration: 0.1s !important;
    }
}
/* /Pages/Accueil/Tarifs.razor.rz.scp.css */
/* ========================================
   TARIFS.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Tarifs publique
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Container principal centré */
.content-container[b-f4gaqgjubr] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Titre page principal mobile */
.page-title[b-f4gaqgjubr] {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Sous-titre page mobile */
.page-subtitle[b-f4gaqgjubr] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* SECTION TARIFS Mobile */
.tarifs-section[b-f4gaqgjubr] {
    min-height: auto;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--neutral-white) 100%);
    padding: 2rem 1rem;
}

/* Utilitaires layout déplacés vers utilities/layouts.css */

/* GRILLE PRICING Mobile - 1 col */
.pricing-grid[b-f4gaqgjubr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.pricing-card[b-f4gaqgjubr] {
    background: var(--neutral-white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(26, 61, 10, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover[b-f4gaqgjubr] {
    transform: translateY(-8px);
    border-color: var(--forest-accent);
    box-shadow: 0 12px 32px rgba(26, 61, 10, 0.15);
}

.pricing-card.featured[b-f4gaqgjubr] {
    border-color: var(--forest-accent);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(127, 176, 105, 0.25);
}

.featured-badge[b-f4gaqgjubr] {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--forest-accent), var(--forest-light));
    color: var(--forest-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(127, 176, 105, 0.3);
}

.pricing-title[b-f4gaqgjubr] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 1.5rem;
}

.pricing-price[b-f4gaqgjubr] {
    margin-bottom: 2rem;
}

.price-amount[b-f4gaqgjubr] {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-primary);
    letter-spacing: -2px;
}

.price-period[b-f4gaqgjubr] {
    font-size: 1rem;
    color: var(--forest-medium);
    font-weight: 500;
}

.pricing-features[b-f4gaqgjubr] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li[b-f4gaqgjubr] {
    padding: 0.8rem 0;
    color: var(--forest-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i[b-f4gaqgjubr] {
    color: var(--forest-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-pricing[b-f4gaqgjubr] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(26, 61, 10, 0.2);
    width: 100%;
}

.btn-pricing:hover[b-f4gaqgjubr] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 61, 10, 0.3);
}

.btn-pricing.primary[b-f4gaqgjubr] {
    background: linear-gradient(135deg, var(--forest-accent), var(--forest-light));
    color: var(--forest-dark);
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(127, 176, 105, 0.3);
}

.btn-pricing.primary:hover[b-f4gaqgjubr] {
    box-shadow: 0 10px 24px rgba(127, 176, 105, 0.4);
}

.locked[b-f4gaqgjubr] {
    color: #b30000; /* Rouge professionnel, moins flashy */
    font-weight: 600; /* Semi-bold, plus moderne que "bold" */
    display: flex;
    align-items: center;
    opacity: 0.9; /* �l�gant sans para�tre "cass�" */
}

    .locked i[b-f4gaqgjubr] {
        color: #b30000;
        margin-right: 6px; /* Espacement ic�ne / texte */
        font-size: 1.05rem; /* L�g�rement plus visible */
    }

    .locked[b-f4gaqgjubr]::after {
        content: " (Premium)"; /* Marqueur subtil et pro */
        color: #b30000;
        font-weight: 500;
        margin-left: 4px;
        font-size: 0.9rem;
        opacity: 0.8;
    }



/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    .content-container[b-f4gaqgjubr] {
        padding: 0 0.5rem;
    }
    /* Titres agrandis */
    .page-title[b-f4gaqgjubr] {
        font-size: 2.2rem;
    }

    .page-subtitle[b-f4gaqgjubr] {
        font-size: 1.1rem;
    }

    /* Grille 2 cols */
    .pricing-grid[b-f4gaqgjubr] {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2.5rem;
    }

    .pricing-card[b-f4gaqgjubr] {
        padding: 1.5rem;
    }

    .pricing-title[b-f4gaqgjubr] {
        font-size: 1.6rem;
    }

    .price-amount[b-f4gaqgjubr] {
        font-size: 3rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container max-width */
    .content-container[b-f4gaqgjubr] {
        max-width: 1200px;
        padding: 0 2rem;
    }

    /* Titres desktop */
    .page-title[b-f4gaqgjubr] {
        font-size: 3rem;
    }

    .page-subtitle[b-f4gaqgjubr] {
        font-size: 1.3rem;
        margin-bottom: 4rem;
    }

    /* Section padding max */
    .tarifs-section[b-f4gaqgjubr] {
        padding: 4rem 2rem;
        min-height: calc(100vh - 180px);
    }

    /* Grille 3 cols */
    .pricing-grid[b-f4gaqgjubr] {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card[b-f4gaqgjubr] {
        padding: 2.5rem;
    }

    .pricing-title[b-f4gaqgjubr] {
        font-size: 1.8rem;
    }

    .price-amount[b-f4gaqgjubr] {
        font-size: 3.5rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large */
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .pricing-card[b-f4gaqgjubr],
    .btn-pricing[b-f4gaqgjubr] {
        transition-duration: 0.1s !important;
    }
}
/* /Pages/Auth/Auth.razor.rz.scp.css */
/* ========================================
   AUTH.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page authentification principale
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* CONTAINER PRINCIPAL - THÈME VERT FORÊT */
.auth-container-forest[b-fnvonv038m] {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
    box-sizing: border-box;
}

/* CARD PRINCIPALE Mobile */
.auth-card-forest[b-fnvonv038m] {
    background: var(--neutral-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--border-subtle);
}

/* HEADER Mobile */
.auth-header-forest[b-fnvonv038m] {
    text-align: center;
    margin-bottom: 1rem;
}

.auth-logo-forest[b-fnvonv038m] {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.auth-logo-img[b-fnvonv038m] {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
}

.auth-title-forest[b-fnvonv038m] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.auth-subtitle-forest[b-fnvonv038m] {
    font-size: 0.9rem;
    color: var(--forest-medium);
    margin: 0;
    font-weight: 500;
}

/* TOGGLE LOGIN / REGISTER Mobile */
.auth-toggle-container[b-fnvonv038m] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    background: var(--neutral-gray);
    border-radius: var(--radius-lg);
    padding: 0.35rem;
}

.auth-toggle-btn[b-fnvonv038m] {
    flex: 1;
    padding: 0.65rem 0.75rem;
    border: 2px solid var(--forest-primary);
    border-radius: var(--radius-md);
    background: var(--sage-light);
    color: var(--forest-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target-min);
}

.auth-toggle-btn:hover[b-fnvonv038m] {
    border: 2px solid var(--forest-primary);
    color: var(--forest-primary);
    background: var(--sage-light);
    transform: translateY(-4px);
}

.auth-toggle-btn.active[b-fnvonv038m] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    box-shadow: 0 2px 8px var(--shadow-soft);
}

/* FORMULAIRE Mobile */
.auth-form-wrapper[b-fnvonv038m] {
    margin-bottom: 1.5rem;
}

.auth-form[b-fnvonv038m] {
    animation: fadeIn 0.4s ease;
}

.form-group-forest[b-fnvonv038m] {
    margin-bottom: 1rem;
}

.form-label-forest[b-fnvonv038m] {
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

/* Cibler les inputs générés par <InputText> avec ::deep */
[b-fnvonv038m] .form-control-forest {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 16px; /* CRITIQUE : Évite zoom iOS */
    transition: all 0.3s var(--transition-smooth);
    background: var(--bg-primary);
    min-height: var(--touch-target-min);
}

[b-fnvonv038m] .form-control-forest:focus {
    outline: none;
    border-color: var(--forest-accent);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.15);
}

[b-fnvonv038m] .form-control-forest.invalid,
[b-fnvonv038m] .form-control-forest.modified.invalid {
    border-color: #dc3545;
}

[b-fnvonv038m] .form-control-forest.invalid:focus,
[b-fnvonv038m] .form-control-forest.modified.invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-text-forest[b-fnvonv038m] {
    font-size: 0.85rem;
    color: var(--forest-medium);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* MESSAGES DE VALIDATION */
[b-fnvonv038m] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* BOUTONS */
.btn-forest-primary[b-fnvonv038m] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-forest-primary:hover:not(:disabled)[b-fnvonv038m] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-forest-primary:disabled[b-fnvonv038m] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-forest-secondary[b-fnvonv038m] {
    background: transparent;
    color: var(--forest-medium);
    border: 2px solid var(--forest-medium);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.btn-forest-secondary:hover[b-fnvonv038m] {
    border: 2px solid var(--sage-light);
    color: var(--forest-primary);
    background: var(--sage-light);
    transform: translateY(-2px);
}

/* ALERTS */
.alert-danger-forest[b-fnvonv038m] {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #c33;
}

.alert-success-forest[b-fnvonv038m] {
    background: #efe;
    border: 1px solid var(--forest-accent);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--forest-dark);
}

/* LIENS */
.auth-link-forest[b-fnvonv038m] {
    text-align: center;
}

.auth-link-forest a[b-fnvonv038m] {
    color: var(--forest-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-link-forest a:hover[b-fnvonv038m] {
    color: var(--forest-primary);
    text-decoration: underline;
}

/* FOOTER */
.auth-footer-forest[b-fnvonv038m] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}



/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Container padding augmenté */
    .auth-container-forest[b-fnvonv038m] {
        padding: 2rem;
    }

    /* Card padding augmenté */
    .auth-card-forest[b-fnvonv038m] {
        padding: 2rem;
    }

    /* Header agrandi */
    .auth-header-forest[b-fnvonv038m] {
        margin-bottom: 1.5rem;
    }

    .auth-logo-forest[b-fnvonv038m] {
        width: 80px;
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .auth-logo-img[b-fnvonv038m] {
        width: 56px;
        height: 56px;
    }

    .auth-title-forest[b-fnvonv038m] {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .auth-subtitle-forest[b-fnvonv038m] {
        font-size: 1rem;
    }

    /* Toggle horizontal */
    .auth-toggle-container[b-fnvonv038m] {
        flex-direction: row;
        margin-bottom: 1.5rem;
        padding: 0.5rem;
    }

    .auth-toggle-btn[b-fnvonv038m] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Form spacing augmenté */
    .auth-form-wrapper[b-fnvonv038m] {
        margin-bottom: 2rem;
    }

    .form-group-forest[b-fnvonv038m] {
        margin-bottom: 1.25rem;
    }

    .form-label-forest[b-fnvonv038m] {
        font-size: 1rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container padding max */
    .auth-container-forest[b-fnvonv038m] {
        padding: 2rem 2rem 3rem;
    }

    /* Card padding max */
    .auth-card-forest[b-fnvonv038m] {
        padding: 2.5rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Optionnel : ajustements desktop large si nécessaire */
}


/* ========================================
   RESPONSIVE HAUTEUR (Landscape Mode)
   ======================================== */

/* Hauteur réduite (landscape tablets/phones) */
@media (max-height: 700px) {
    .auth-card-forest[b-fnvonv038m] {
        padding: 1.5rem;
    }

    .auth-header-forest[b-fnvonv038m] {
        margin-bottom: 1.25rem;
    }

    .auth-logo-forest[b-fnvonv038m] {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }

    .auth-logo-img[b-fnvonv038m] {
        width: 50px;
        height: 50px;
    }

    .auth-title-forest[b-fnvonv038m] {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .auth-subtitle-forest[b-fnvonv038m] {
        font-size: 0.9rem;
    }

    .auth-toggle-container[b-fnvonv038m] {
        margin-bottom: 1.25rem;
    }

    .form-group-forest[b-fnvonv038m] {
        margin-bottom: 1rem;
    }

    .auth-footer-forest[b-fnvonv038m] {
        padding-top: 1rem;
    }
}

/* Très petite hauteur (landscape phones) */
@media (max-height: 550px) {
    .auth-card-forest[b-fnvonv038m] {
        padding: 1rem;
    }

    .auth-header-forest[b-fnvonv038m] {
        margin-bottom: 0.75rem;
    }

    .auth-logo-forest[b-fnvonv038m] {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
        background-color: white;
    }

    .auth-logo-img[b-fnvonv038m] {
        width: 35px;
        height: 35px;
    }

    .auth-title-forest[b-fnvonv038m] {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .auth-subtitle-forest[b-fnvonv038m] {
        font-size: 0.8rem;
    }

    .auth-toggle-container[b-fnvonv038m] {
        margin-bottom: 0.75rem;
        padding: 0.35rem;
    }

    .auth-toggle-btn[b-fnvonv038m] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .form-group-forest[b-fnvonv038m] {
        margin-bottom: 0.75rem;
    }

    .auth-footer-forest[b-fnvonv038m] {
        padding-top: 0.75rem;
    }

    .btn-forest-secondary[b-fnvonv038m] {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .auth-toggle-btn[b-fnvonv038m],
    .btn-forest-primary[b-fnvonv038m],
    .btn-forest-secondary[b-fnvonv038m],
    [b-fnvonv038m] .form-control-forest {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}
/* /Pages/Auth/ConfirmEmail.razor.rz.scp.css */
/* ========================================
   CONFIRMEMAIL.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Confirmation Email
   ======================================== */

/* ============================================
   BASE MOBILE FIRST - 360px
   ============================================ */

/* CONTAINER PRINCIPAL - THÈME VERT FORÊT */
.auth-container-forest[b-evt3sqhcph] {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
    box-sizing: border-box;
}

/* CARD PRINCIPALE */
.auth-card-forest[b-evt3sqhcph] {
    background: var(--neutral-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--border-subtle);
}

/* HEADER */
.auth-header-forest[b-evt3sqhcph] {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-logo-forest[b-evt3sqhcph] {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.auth-logo-img[b-evt3sqhcph] {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
}

.auth-title-forest[b-evt3sqhcph] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subtitle-forest[b-evt3sqhcph] {
    font-size: 0.9rem;
    color: var(--forest-medium);
    margin: 0;
    font-weight: 500;
}

/* ALERT INFO */
.alert-info-forest[b-evt3sqhcph] {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #004085;
}

    .alert-info-forest strong[b-evt3sqhcph] {
        display: block;
        margin-bottom: 0.5rem;
        color: #003366;
    }

/* BOUTONS */
.btn-forest-primary[b-evt3sqhcph] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .btn-forest-primary:hover:not(:disabled)[b-evt3sqhcph] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--shadow-medium);
    }

.btn-forest-secondary[b-evt3sqhcph] {
    background: transparent;
    color: var(--forest-medium);
    border: 2px solid var(--forest-medium);
    border-radius: 10px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

    .btn-forest-secondary:hover[b-evt3sqhcph] {
        border-color: var(--forest-primary);
        color: var(--forest-primary);
        background: var(--sage-light);
        transform: translateY(-2px);
    }

/* FOOTER */
.auth-footer-forest[b-evt3sqhcph] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================
   BREAKPOINT 640px (SM)
   ============================================ */
@media (min-width: 640px) {
    .auth-container-forest[b-evt3sqhcph] {
        padding: 2rem;
    }

    .auth-card-forest[b-evt3sqhcph] {
        padding: 2rem;
    }

    .auth-header-forest[b-evt3sqhcph] {
        margin-bottom: 1.5rem;
    }

    .auth-logo-forest[b-evt3sqhcph] {
        width: 80px;
        height: 80px;
    }

    .auth-logo-img[b-evt3sqhcph] {
        width: 56px;
        height: 56px;
    }

    .auth-title-forest[b-evt3sqhcph] {
        font-size: 2rem;
    }

    .auth-subtitle-forest[b-evt3sqhcph] {
        font-size: 1rem;
    }

    .btn-forest-secondary[b-evt3sqhcph] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   BREAKPOINT 1024px (MD)
   ============================================ */
@media (min-width: 1024px) {
    .auth-container-forest[b-evt3sqhcph] {
        padding: 2rem 2rem 3rem;
    }
}

/* ============================================
   BREAKPOINT 1280px (LG)
   ============================================ */
@media (min-width: 1280px) {
    /* Aucun changement supplémentaire nécessaire pour desktop */
}
/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* ========================================
   FORGOTPASSWORD.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Mot de passe oublié
   ======================================== */

/* ============================================
   BASE MOBILE FIRST - 360px
   ============================================ */

/* CONTAINER PRINCIPAL - THÈME VERT FORÊT */
.auth-container-forest[b-gu0ass06ax] {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
    box-sizing: border-box;
}

/* CARD PRINCIPALE */
.auth-card-forest[b-gu0ass06ax] {
    background: var(--neutral-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--border-subtle);
}

/* HEADER */
.auth-header-forest[b-gu0ass06ax] {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-logo-forest[b-gu0ass06ax] {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.auth-logo-img[b-gu0ass06ax] {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
}

.auth-title-forest[b-gu0ass06ax] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subtitle-forest[b-gu0ass06ax] {
    font-size: 0.9rem;
    color: var(--forest-medium);
    margin: 0;
    font-weight: 500;
}

/* FORMULAIRE */
.auth-form[b-gu0ass06ax] {
    animation: fadeIn 0.4s ease;
}

.form-group-forest[b-gu0ass06ax] {
    margin-bottom: 1rem;
}

.form-label-forest[b-gu0ass06ax] {
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Cibler les inputs générés par <InputText> avec ::deep */
[b-gu0ass06ax] .form-control-forest {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
    background: var(--bg-primary);
}

    [b-gu0ass06ax] .form-control-forest:focus {
        outline: none;
        border-color: var(--forest-accent);
        box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.15);
    }

    [b-gu0ass06ax] .form-control-forest.invalid,
    [b-gu0ass06ax] .form-control-forest.modified.invalid {
        border-color: #dc3545;
    }

        [b-gu0ass06ax] .form-control-forest.invalid:focus,
        [b-gu0ass06ax] .form-control-forest.modified.invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
        }

.form-text-forest[b-gu0ass06ax] {
    font-size: 0.85rem;
    color: var(--forest-medium);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* MESSAGES DE VALIDATION */
[b-gu0ass06ax] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* BOUTONS */
.btn-forest-primary[b-gu0ass06ax] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .btn-forest-primary:hover:not(:disabled)[b-gu0ass06ax] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--shadow-medium);
    }

    .btn-forest-primary:disabled[b-gu0ass06ax] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-forest-secondary[b-gu0ass06ax] {
    background: transparent;
    color: var(--forest-medium);
    border: 2px solid var(--forest-medium);
    border-radius: 10px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

    .btn-forest-secondary:hover[b-gu0ass06ax] {
        border: 2px solid var(--sage-light);
        color: var(--forest-primary);
        background: var(--sage-light);
        transform: translateY(-2px);
    }

/* ALERTS */
.alert-danger-forest[b-gu0ass06ax] {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #c33;
}

.alert-success-forest[b-gu0ass06ax] {
    background: #efe;
    border: 1px solid var(--forest-accent);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--forest-dark);
}

/* FOOTER */
.auth-footer-forest[b-gu0ass06ax] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================
   BREAKPOINT 640px (SM)
   ============================================ */
@media (min-width: 640px) {
    .auth-container-forest[b-gu0ass06ax] {
        padding: 2rem;
    }

    .auth-card-forest[b-gu0ass06ax] {
        padding: 2rem;
    }

    .auth-header-forest[b-gu0ass06ax] {
        margin-bottom: 1.5rem;
    }

    .auth-logo-forest[b-gu0ass06ax] {
        width: 80px;
        height: 80px;
    }

    .auth-logo-img[b-gu0ass06ax] {
        width: 56px;
        height: 56px;
    }

    .auth-title-forest[b-gu0ass06ax] {
        font-size: 2rem;
    }

    .auth-subtitle-forest[b-gu0ass06ax] {
        font-size: 1rem;
    }

    .form-group-forest[b-gu0ass06ax] {
        margin-bottom: 1.25rem;
    }

    [b-gu0ass06ax] .form-control-forest {
        padding: 0.85rem 1rem;
    }

    .btn-forest-secondary[b-gu0ass06ax] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   BREAKPOINT 1024px (MD)
   ============================================ */
@media (min-width: 1024px) {
    .auth-container-forest[b-gu0ass06ax] {
        padding: 2rem 2rem 3rem;
    }
}

/* ============================================
   BREAKPOINT 1280px (LG)
   ============================================ */
@media (min-width: 1280px) {
    /* Aucun changement supplémentaire nécessaire pour desktop */
}
/* /Pages/Auth/ResetPassword.razor.rz.scp.css */
/* ========================================
   RESETPASSWORD.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page Réinitialisation mot de passe
   ======================================== */

/* ============================================
   BASE MOBILE FIRST - 360px
   ============================================ */

/* CONTAINER PRINCIPAL - THÈME VERT FORÊT */
.auth-container-forest[b-nwp8qx6pw1] {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--sage-light) 100%);
    padding: 1rem;
    box-sizing: border-box;
}

/* CARD PRINCIPALE */
.auth-card-forest[b-nwp8qx6pw1] {
    background: var(--neutral-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--border-subtle);
}

/* HEADER */
.auth-header-forest[b-nwp8qx6pw1] {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-logo-forest[b-nwp8qx6pw1] {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.auth-logo-img[b-nwp8qx6pw1] {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
}

.auth-title-forest[b-nwp8qx6pw1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subtitle-forest[b-nwp8qx6pw1] {
    font-size: 0.9rem;
    color: var(--forest-medium);
    margin: 0;
    font-weight: 500;
}

/* FORMULAIRE */
.auth-form[b-nwp8qx6pw1] {
    animation: fadeIn 0.4s ease;
}

.form-group-forest[b-nwp8qx6pw1] {
    margin-bottom: 1rem;
}

.form-label-forest[b-nwp8qx6pw1] {
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Cibler les inputs générés par <InputText> avec ::deep */
[b-nwp8qx6pw1] .form-control-forest {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
    background: var(--bg-primary);
}

    [b-nwp8qx6pw1] .form-control-forest:focus {
        outline: none;
        border-color: var(--forest-accent);
        box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.15);
    }

    [b-nwp8qx6pw1] .form-control-forest.invalid,
    [b-nwp8qx6pw1] .form-control-forest.modified.invalid {
        border-color: #dc3545;
    }

        [b-nwp8qx6pw1] .form-control-forest.invalid:focus,
        [b-nwp8qx6pw1] .form-control-forest.modified.invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
        }

.form-text-forest[b-nwp8qx6pw1] {
    font-size: 0.85rem;
    color: var(--forest-medium);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* MESSAGES DE VALIDATION */
[b-nwp8qx6pw1] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* BOUTONS */
.btn-forest-primary[b-nwp8qx6pw1] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .btn-forest-primary:hover:not(:disabled)[b-nwp8qx6pw1] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--shadow-medium);
    }

    .btn-forest-primary:disabled[b-nwp8qx6pw1] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-forest-secondary[b-nwp8qx6pw1] {
    background: transparent;
    color: var(--forest-medium);
    border: 2px solid var(--forest-medium);
    border-radius: 10px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

    .btn-forest-secondary:hover[b-nwp8qx6pw1] {
        border: 2px solid var(--sage-light);
        color: var(--forest-primary);
        background: var(--sage-light);
        transform: translateY(-2px);
    }

/* ALERTS */
.alert-danger-forest[b-nwp8qx6pw1] {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #c33;
}

.alert-success-forest[b-nwp8qx6pw1] {
    background: #efe;
    border: 1px solid var(--forest-accent);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--forest-dark);
}

/* FOOTER */
.auth-footer-forest[b-nwp8qx6pw1] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================
   BREAKPOINT 640px (SM)
   ============================================ */
@media (min-width: 640px) {
    .auth-container-forest[b-nwp8qx6pw1] {
        padding: 2rem;
    }

    .auth-card-forest[b-nwp8qx6pw1] {
        padding: 2rem;
    }

    .auth-header-forest[b-nwp8qx6pw1] {
        margin-bottom: 1.5rem;
    }

    .auth-logo-forest[b-nwp8qx6pw1] {
        width: 80px;
        height: 80px;
    }

    .auth-logo-img[b-nwp8qx6pw1] {
        width: 56px;
        height: 56px;
    }

    .auth-title-forest[b-nwp8qx6pw1] {
        font-size: 2rem;
    }

    .auth-subtitle-forest[b-nwp8qx6pw1] {
        font-size: 1rem;
    }

    .form-group-forest[b-nwp8qx6pw1] {
        margin-bottom: 1.25rem;
    }

    [b-nwp8qx6pw1] .form-control-forest {
        padding: 0.85rem 1rem;
    }

    .btn-forest-secondary[b-nwp8qx6pw1] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   BREAKPOINT 1024px (MD)
   ============================================ */
@media (min-width: 1024px) {
    .auth-container-forest[b-nwp8qx6pw1] {
        padding: 2rem 2rem 3rem;
    }
}

/* ============================================
   BREAKPOINT 1280px (LG)
   ============================================ */
@media (min-width: 1280px) {
    /* Aucun changement supplémentaire nécessaire pour desktop */
}
/* /Pages/Index.razor.rz.scp.css */
/* ========================================
   INDEX.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page d'accueil publique
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* SPINNER TEMPORAIRE AUTHENTIFICATION */
.auth-check-container[b-6m94pahf1s] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.auth-check-spinner[b-6m94pahf1s] {
    text-align: center;
}

.auth-check-spinner .spinner[b-6m94pahf1s] {
    font-size: 3rem;
    animation: spin 1s linear infinite;
}

/* HERO SECTION - Mobile First */
.hero-section[b-6m94pahf1s] {
    min-height: auto;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--neutral-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    animation: fadeInPage 0.7s ease 0.2s backwards;
}

.hero-container[b-6m94pahf1s] {
    max-width: 100%;
    text-align: center;
}

.hero-logo-container[b-6m94pahf1s] {
    margin-bottom: -1rem;
    animation: fadeInPage 0.8s ease 0.3s backwards;
    overflow: hidden;
}

.hero-logo[b-6m94pahf1s] {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background-color: var(--forest-primary);
    -webkit-mask-image: url(/images/Logo_ClapierManager.png);
    -webkit-mask-size: 140%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(/images/Logo_ClapierManager.png);
    mask-size: 140%;
    mask-repeat: no-repeat;
    mask-position: center;
    filter: drop-shadow(0 8px 32px var(--shadow-soft));
    transition: transform 0.3s ease;
}

.hero-logo:hover[b-6m94pahf1s] {
    transform: scale(1.05) rotate(2deg);
}

.hero-title[b-6m94pahf1s] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--forest-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: fadeInPage 0.8s ease 0.4s backwards;
}

.hero-subtitle[b-6m94pahf1s] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest-medium);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    animation: fadeInPage 0.8s ease 0.5s backwards;
}

.btn-cta[b-6m94pahf1s] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 32px var(--shadow-soft);
    transition: all 0.3s var(--transition-smooth);
    margin-bottom: 2rem;
    animation: fadeInPage 0.8s ease 0.6s backwards;
    width: 100%;
    max-width: 400px;
    min-height: var(--touch-target-min);
}

.btn-cta:hover[b-6m94pahf1s] {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px var(--shadow-medium);
}

.btn-cta:active[b-6m94pahf1s] {
    transform: translateY(-2px);
}

/* AVANTAGES - Mobile First */
.avantages-container[b-6m94pahf1s] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    animation: fadeInPage 0.8s ease 0.7s backwards;
}

.avantage-item[b-6m94pahf1s] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(26, 61, 10, 0.08);
}

.avantage-item:hover[b-6m94pahf1s] {
    border-color: var(--forest-accent);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(26, 61, 10, 0.15);
}

.avantage-icon[b-6m94pahf1s] {
    font-size: 1.35rem;
    color: var(--forest-accent);
    flex-shrink: 0;
}

.avantage-item span[b-6m94pahf1s] {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest-dark);
}



/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Hero section agrandi */
    .hero-section[b-6m94pahf1s] {
        padding: 3rem 1.5rem;
    }

    .hero-logo-container[b-6m94pahf1s] {
        margin-bottom: -1.5rem;
    }

    .hero-logo[b-6m94pahf1s] {
        width: 250px;
        height: 250px;
    }

    .hero-title[b-6m94pahf1s] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-6m94pahf1s] {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .btn-cta[b-6m94pahf1s] {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Avantages spacing augmenté */
    .avantages-container[b-6m94pahf1s] {
        gap: 1.25rem;
        max-width: 600px;
    }

    .avantage-item[b-6m94pahf1s] {
        padding: 1rem;
    }

    .avantage-icon[b-6m94pahf1s] {
        font-size: 1.5rem;
    }

    .avantage-item span[b-6m94pahf1s] {
        font-size: 1rem;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Hero section desktop */
    .hero-section[b-6m94pahf1s] {
        padding: 4rem 2rem;
        min-height: calc(100vh - 80px);
    }

    .hero-container[b-6m94pahf1s] {
        max-width: 700px;
    }

    .hero-logo-container[b-6m94pahf1s] {
        margin-bottom: -2rem;
    }

    .hero-logo[b-6m94pahf1s] {
        width: 400px;
        height: 400px;
    }

    .hero-title[b-6m94pahf1s] {
        font-size: 3rem;
    }

    .hero-subtitle[b-6m94pahf1s] {
        font-size: 1.35rem;
        margin-bottom: 3rem;
    }

    .btn-cta[b-6m94pahf1s] {
        padding: 1.25rem 3rem;
        font-size: 1.25rem;
        width: auto;
        margin-bottom: 4rem;
    }

    /* Avantages spacing max */
    .avantages-container[b-6m94pahf1s] {
        gap: 1.5rem;
    }

    .avantage-item[b-6m94pahf1s] {
        padding: 1.25rem;
    }

    .avantage-icon[b-6m94pahf1s] {
        font-size: 1.75rem;
    }

    .avantage-item span[b-6m94pahf1s] {
        font-size: 1.1rem;
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Hero section élargi */
    .hero-container[b-6m94pahf1s] {
        max-width: 800px;
    }

    .hero-logo[b-6m94pahf1s] {
        width: 500px;
        height: 500px;
    }

    .hero-title[b-6m94pahf1s] {
        font-size: 3.5rem;
    }

    .hero-subtitle[b-6m94pahf1s] {
        font-size: 1.5rem;
    }

    /* Avantages élargi */
    .avantages-container[b-6m94pahf1s] {
        max-width: 700px;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .hero-section[b-6m94pahf1s],
    .hero-logo[b-6m94pahf1s],
    .btn-cta[b-6m94pahf1s],
    .avantage-item[b-6m94pahf1s] {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}
/* /Pages/MaPlanification/CalendrierAgenda.razor.rz.scp.css */
/* ── CALENDRIER AGENDA ── */
.agenda-scroll[b-tt4vcgx1lu] {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 2px;
}

.agenda-vide[b-tt4vcgx1lu] {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-subtle);
}

.agenda-groupe[b-tt4vcgx1lu] { margin-bottom: var(--spacing-md); }

.agenda-date-header[b-tt4vcgx1lu] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--spacing-xs);
}

.agenda-date-header.aujourd-hui[b-tt4vcgx1lu] {
    color: var(--forest-primary);
    border-bottom-color: var(--forest-accent);
}

.agenda-row[b-tt4vcgx1lu] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 0.75rem;
    margin-bottom: 4px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: transparent;
}

.agenda-icone[b-tt4vcgx1lu] { font-size: 1rem; flex-shrink: 0; }

.agenda-content[b-tt4vcgx1lu] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
}

.agenda-content .cal-ev-titre[b-tt4vcgx1lu] {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agenda-content .cal-ev-lapin[b-tt4vcgx1lu] {
    font-size: 0.75rem;
    opacity: 0.75;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── ÉVÉNEMENTS (couleurs) ── */
.ev-soin[b-tt4vcgx1lu]         { background: rgba(13,110,253,0.12);  border-left-color: #0d6efd; color: #084298; }
.ev-pesee[b-tt4vcgx1lu]        { background: rgba(253,126,20,0.12);   border-left-color: #fd7e14; color: #7e3900; }
.ev-reproduction[b-tt4vcgx1lu] { background: rgba(214,51,132,0.12);   border-left-color: #d63384; color: #6a0033; }
.ev-nettoyage[b-tt4vcgx1lu]    { background: rgba(127,176,105,0.15);  border-left-color: var(--forest-accent); color: var(--forest-dark); }
.ev-rappel[b-tt4vcgx1lu]       { background: rgba(245,158,11,0.15);   border-left-color: #f59e0b; color: #7c4700; }
.ev-autre[b-tt4vcgx1lu]        { background: var(--bg-secondary);     border-left-color: var(--border-subtle); color: var(--text-secondary); }
/* /Pages/MaPlanification/CalendrierHebdomadaire.razor.rz.scp.css */
/* ── CALENDRIER HEBDOMADAIRE ── */
.cal-hebdo[b-1ysdwydcnb] {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.cal-hebdo-entetes[b-1ysdwydcnb] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 2px solid var(--border-subtle);
    flex-shrink: 0;
}

.cal-hebdo-entete[b-1ysdwydcnb] {
    text-align: center;
    padding: var(--spacing-xs) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cal-hebdo-entete.aujourd-hui .hebdo-jour-nom[b-1ysdwydcnb] { color: var(--forest-primary); }

.hebdo-jour-nom[b-1ysdwydcnb] {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.hebdo-jour-num[b-1ysdwydcnb] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.num-today[b-1ysdwydcnb] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.cal-hebdo-corps[b-1ysdwydcnb] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
    min-height: 300px;
}

.cal-hebdo-col[b-1ysdwydcnb] {
    border: 1px solid var(--border-subtle);
    padding: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background 0.15s ease;
    overflow-y: auto;
}

.cal-hebdo-col:hover[b-1ysdwydcnb]       { background: var(--sage-light); }
.cal-hebdo-col.aujourd-hui[b-1ysdwydcnb] { background: rgba(127,176,105,0.06); }

/* ── ÉVÉNEMENTS ── */
.cal-event[b-1ysdwydcnb] {
    border-radius: var(--radius-sm);
    padding: 2px 5px;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-left: 3px solid transparent;
    transition: filter 0.15s ease;
    overflow: hidden;
}

.cal-event:hover[b-1ysdwydcnb] { filter: brightness(0.92); }

.cal-ev-lapin[b-1ysdwydcnb] {
    font-size: 0.65rem;
    opacity: 0.75;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-ev-titre[b-1ysdwydcnb] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ev-soin[b-1ysdwydcnb]         { background: rgba(13,110,253,0.12);  border-left-color: #0d6efd; color: #084298; }
.ev-pesee[b-1ysdwydcnb]        { background: rgba(253,126,20,0.12);   border-left-color: #fd7e14; color: #7e3900; }
.ev-reproduction[b-1ysdwydcnb] { background: rgba(214,51,132,0.12);   border-left-color: #d63384; color: #6a0033; }
.ev-nettoyage[b-1ysdwydcnb]    { background: rgba(127,176,105,0.15);  border-left-color: var(--forest-accent); color: var(--forest-dark); }
.ev-rappel[b-1ysdwydcnb]       { background: rgba(245,158,11,0.15);   border-left-color: #f59e0b; color: #7c4700; }
.ev-autre[b-1ysdwydcnb]        { background: var(--bg-secondary);     border-left-color: var(--border-subtle); color: var(--text-secondary); }

/* ── COMPACT MOBILE : 7 colonnes dans ~360px ── */
@media (max-width: 639px) {
    .cal-hebdo-entete[b-1ysdwydcnb]    { padding: 4px 0; }
    .hebdo-jour-nom[b-1ysdwydcnb]      { letter-spacing: 0; font-size: 0.6rem; }
    .hebdo-jour-num[b-1ysdwydcnb]      { font-size: 0.78rem; }
    .num-today[b-1ysdwydcnb]           { width: 20px; height: 20px; font-size: 0.68rem; }

    .cal-hebdo-col[b-1ysdwydcnb]       { padding: 2px 1px; gap: 2px; }
    .cal-event[b-1ysdwydcnb]           { padding: 1px 2px; font-size: 0.62rem; border-left-width: 2px; }
    .cal-ev-lapin[b-1ysdwydcnb]        { display: none; }
}
/* /Pages/MaPlanification/CalendrierMensuel.razor.rz.scp.css */
/* ── GRILLE MENSUELLE ── */
.cal-mensuel[b-ztmdlr4t0x] {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.cal-grid[b-ztmdlr4t0x] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.cal-entetes[b-ztmdlr4t0x] {
    border-bottom: 2px solid var(--border-subtle);
    flex-shrink: 0;
}

.cal-entete-jour[b-ztmdlr4t0x] {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    letter-spacing: 0.05em;
}

.cal-corps[b-ztmdlr4t0x] {
    flex: 1;
    min-height: 0;
    grid-template-rows: repeat(6, 1fr);
    align-content: stretch;
}

.cal-cellule[b-ztmdlr4t0x] {
    border: 1px solid var(--border-subtle);
    padding: 3px;
    cursor: pointer;
    transition: background 0.15s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 60px;
}

.cal-cellule:hover[b-ztmdlr4t0x]        { background: var(--sage-light); }
.cal-cellule.hors-mois[b-ztmdlr4t0x]    { background: var(--bg-secondary); opacity: 0.5; }
.cal-cellule.aujourd-hui[b-ztmdlr4t0x]  { background: rgba(127,176,105,0.06); }

.cal-num-jour[b-ztmdlr4t0x] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    line-height: 1;
}

.num-today[b-ztmdlr4t0x] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.cal-ev-plus[b-ztmdlr4t0x] {
    font-size: 0.65rem;
    color: var(--forest-primary);
    font-weight: 700;
    cursor: pointer;
    padding: 1px 4px;
    border-radius: var(--radius-sm);
    background: rgba(127, 176, 105, 0.12);
    align-self: flex-start;
    white-space: nowrap;
}

.cal-ev-plus:hover[b-ztmdlr4t0x] {
    background: rgba(127, 176, 105, 0.25);
    color: var(--forest-dark);
}

/* ── ÉVÉNEMENTS ── */
.cal-event[b-ztmdlr4t0x] {
    border-radius: var(--radius-sm);
    padding: 2px 5px;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    border-left: 3px solid transparent;
    transition: filter 0.15s ease;
    overflow: hidden;
    white-space: nowrap;
}

.cal-event:hover[b-ztmdlr4t0x] { filter: brightness(0.92); }

.cal-ev-lapin[b-ztmdlr4t0x] {
    font-size: 0.65rem;
    opacity: 0.7;
    flex-shrink: 0;
    max-width: 38%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-ev-lapin[b-ztmdlr4t0x]::after {
    content: '·';
    margin-left: 3px;
    opacity: 0.5;
}

.cal-ev-titre[b-ztmdlr4t0x] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ev-soin[b-ztmdlr4t0x]         { background: rgba(13,110,253,0.12);  border-left-color: #0d6efd; color: #084298; }
.ev-pesee[b-ztmdlr4t0x]        { background: rgba(253,126,20,0.12);   border-left-color: #fd7e14; color: #7e3900; }
.ev-reproduction[b-ztmdlr4t0x] { background: rgba(214,51,132,0.12);   border-left-color: #d63384; color: #6a0033; }
.ev-nettoyage[b-ztmdlr4t0x]    { background: rgba(127,176,105,0.15);  border-left-color: var(--forest-accent); color: var(--forest-dark); }
.ev-rappel[b-ztmdlr4t0x]       { background: rgba(245,158,11,0.15);   border-left-color: #f59e0b; color: #7c4700; }
.ev-autre[b-ztmdlr4t0x]        { background: var(--bg-secondary);     border-left-color: var(--border-subtle); color: var(--text-secondary); }

/* ── COMPACT MOBILE : 7 colonnes dans ~360px ── */
@media (max-width: 639px) {
    .cal-entete-jour[b-ztmdlr4t0x] { font-size: 0.58rem; letter-spacing: 0; padding: 3px 0; }
    .cal-cellule[b-ztmdlr4t0x]     { padding: 2px; min-height: 50px; gap: 1px; }
    .cal-num-jour[b-ztmdlr4t0x]    { font-size: 0.68rem; }
    .num-today[b-ztmdlr4t0x]       { width: 18px; height: 18px; font-size: 0.62rem; }
    .cal-event[b-ztmdlr4t0x]       { padding: 1px 3px; font-size: 0.62rem; border-left-width: 2px; }
    .cal-ev-lapin[b-ztmdlr4t0x]    { display: none; }
}

@media (min-width: 1024px) {
    .cal-entete-jour[b-ztmdlr4t0x] { font-size: 0.72rem; }
    .cal-num-jour[b-ztmdlr4t0x]    { font-size: 0.8rem; }
    .cal-ev-titre[b-ztmdlr4t0x]    { font-size: 0.75rem; }
    .cal-ev-lapin[b-ztmdlr4t0x]    { font-size: 0.68rem; }
}
/* /Pages/MaPlanification/FormulaireEvenement.razor.rz.scp.css */
/* ── BACKDROP ── */
.ev-modal-backdrop[b-2zsytbz7cf] {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    z-index: 1050;
    animation: backdrop-in-b-2zsytbz7cf 0.2s ease;
}

@keyframes backdrop-in-b-2zsytbz7cf {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── MODAL CENTRÉ ── */
.ev-modal[b-2zsytbz7cf] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    max-width: 520px;
    max-height: 90dvh;
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px var(--shadow-strong);
    z-index: 1051;
    display: flex;
    flex-direction: column;
    animation: modal-in-b-2zsytbz7cf 0.2s ease;
}

@keyframes modal-in-b-2zsytbz7cf {
    from { opacity: 0; transform: translate(-50%, -48%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ── HEADER ── */
.ev-modal-header[b-2zsytbz7cf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    flex-shrink: 0;
}

.ev-modal-titre[b-2zsytbz7cf] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.btn-fermer-modal[b-2zsytbz7cf] {
    background: none;
    border: none;
    color: var(--text-inverse);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.15s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-fermer-modal:hover[b-2zsytbz7cf] { opacity: 1; background: rgba(255,255,255,0.15); }

/* ── BODY ── */
.ev-modal-body[b-2zsytbz7cf] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.4rem 0.5rem;
}

/* ── LIGNE DOUBLE (date + type côte à côte) ── */
.form-row-plan[b-2zsytbz7cf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

/* ── CHAMPS ── */
.form-group-plan[b-2zsytbz7cf] { margin-bottom: 0.85rem; }

.form-label-plan[b-2zsytbz7cf] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.form-group-plan .form-control[b-2zsytbz7cf],
.form-group-plan .form-select[b-2zsytbz7cf] {
    font-size: 0.9rem;
    min-height: 42px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    width: 100%;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.form-group-plan .form-control:focus[b-2zsytbz7cf],
.form-group-plan .form-select:focus[b-2zsytbz7cf] {
    background: var(--bg-elevated);
    border-color: var(--forest-accent);
    box-shadow: 0 0 0 3px rgba(127,176,105,0.12);
    outline: none;
}

/* ── CONFIRMATION SUPPRESSION ── */
.confirmation-suppression[b-2zsytbz7cf] {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(220,53,69,0.06);
    border: 1px solid rgba(220,53,69,0.25);
    border-radius: var(--radius-md);
}

.confirmation-suppression p[b-2zsytbz7cf] {
    font-size: 0.875rem;
    color: #842029;
    margin-bottom: var(--spacing-sm);
}

.confirmation-actions[b-2zsytbz7cf] {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* ── FOOTER ── */
.ev-modal-footer[b-2zsytbz7cf] {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    align-items: center;
    padding: 0.85rem 1.4rem;
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

/* ── BOUTONS ── */
.btn-plan-enregistrer[b-2zsytbz7cf] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.3rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px var(--shadow-medium);
    min-height: 40px;
}

.btn-plan-enregistrer:hover:not(:disabled)[b-2zsytbz7cf] {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--shadow-medium);
}

.btn-plan-enregistrer:disabled[b-2zsytbz7cf] { opacity: 0.65; cursor: not-allowed; }

.btn-plan-annuler[b-2zsytbz7cf] {
    display: inline-flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--forest-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
}

.btn-plan-annuler:hover:not(:disabled)[b-2zsytbz7cf] { background: var(--sage-light); border-color: var(--forest-accent); }
.btn-plan-annuler:disabled[b-2zsytbz7cf] { opacity: 0.65; cursor: not-allowed; }

.btn-plan-supprimer[b-2zsytbz7cf] {
    display: inline-flex;
    align-items: center;
    background: rgba(220,53,69,0.08);
    border: 1.5px solid rgba(220,53,69,0.3);
    border-radius: var(--radius-full);
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
    margin-right: auto;
}

.btn-plan-supprimer:hover:not(:disabled)[b-2zsytbz7cf] { background: rgba(220,53,69,0.15); }
.btn-plan-supprimer:disabled[b-2zsytbz7cf] { opacity: 0.65; cursor: not-allowed; }

.btn-plan-supprimer-confirm[b-2zsytbz7cf] {
    display: inline-flex;
    align-items: center;
    background: #dc3545;
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 40px;
}

.btn-plan-supprimer-confirm:hover:not(:disabled)[b-2zsytbz7cf] { background: #b02a37; }
.btn-plan-supprimer-confirm:disabled[b-2zsytbz7cf] { opacity: 0.65; cursor: not-allowed; }

/* ── ACCESSIBILITÉ ── */
@media (prefers-reduced-motion: reduce) {
    .ev-modal[b-2zsytbz7cf], .ev-modal-backdrop[b-2zsytbz7cf] { animation: none !important; }
}
/* /Pages/MaPlanification/MaPlanification.razor.rz.scp.css */
/* ── LOADING ── */
.plan-loading[b-epe73mvwus] {
    display: flex;
    justify-content: center;
    padding: var(--spacing-2xl);
}

/* ── CONTAINER PRINCIPAL ── */
.plan-container[b-epe73mvwus] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* ── BARRE NAVIGATION ── */
.plan-header[b-epe73mvwus] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    flex-shrink: 0;
}

.plan-header-row1[b-epe73mvwus] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plan-header-row2[b-epe73mvwus] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.plan-periode-titre[b-epe73mvwus] {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-align: center;
    text-transform: capitalize;
}

.btn-nav-plan[b-epe73mvwus] {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--forest-dark);
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: var(--touch-target-min);
}

.btn-nav-plan:hover[b-epe73mvwus] { background: var(--sage-light); }

.btn-aujourd-hui[b-epe73mvwus] {
    background: none;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: var(--touch-target-min);
}

.btn-aujourd-hui:hover[b-epe73mvwus] {
    background: var(--sage-light);
    color: var(--forest-dark);
    border-color: var(--forest-accent);
}

/* ── TOGGLE VUES ── */
.plan-view-toggle[b-epe73mvwus] {
    display: flex;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    padding: 3px;
    border: 1px solid var(--border-subtle);
    align-self: flex-start;
}

.btn-vue[b-epe73mvwus] {
    background: none;
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    min-height: var(--touch-target-min);
}

.btn-vue.actif[b-epe73mvwus] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    box-shadow: 0 2px 6px var(--shadow-soft);
}

/* ── BOUTON NOUVEL ÉVÉNEMENT ── */
.btn-nouvel-evenement[b-epe73mvwus] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 1.25rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px var(--shadow-medium);
    align-self: flex-start;
    min-height: var(--touch-target-min);
}

.btn-nouvel-evenement:hover[b-epe73mvwus] {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px var(--shadow-medium);
}

.btn-ev-plus[b-epe73mvwus] { display: none; }

/* ── BOUTON + COMPACT (< 1024px) : collé au toggle ── */
@media (max-width: 1023px) {
    .btn-ev-texte[b-epe73mvwus] { display: none; }
    .btn-ev-plus[b-epe73mvwus]  { display: flex; font-size: 1.4rem; font-weight: 300; line-height: 1; }
    .btn-nouvel-evenement[b-epe73mvwus] {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-self: center;
        box-shadow: 0 2px 8px var(--shadow-medium);
    }
    .plan-header-row2[b-epe73mvwus] { gap: 0; }
    .btn-nouvel-evenement[b-epe73mvwus] { margin-left: auto; margin-right: auto; }
}

/* ── WRAPPER CALENDRIER ── */
.plan-cal-wrapper[b-epe73mvwus] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── RESPONSIVE 640px ── */
@media (min-width: 640px) {
    .plan-header[b-epe73mvwus] {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-sm);
    }
    .plan-header-row1[b-epe73mvwus] { flex: 1; }
    .plan-header-row2[b-epe73mvwus] { flex-shrink: 0; }
    .plan-periode-titre[b-epe73mvwus] {
        flex: 0 0 auto;
        font-size: 1.1rem;
        min-width: 160px;
    }
}

/* ── RESPONSIVE 1024px ── */
@media (min-width: 1024px) {
    .plan-header[b-epe73mvwus] { padding: var(--spacing-xs) 0 var(--spacing-sm); }
    .plan-periode-titre[b-epe73mvwus] { font-size: 1.2rem; min-width: 200px; }
}

/* ── ACCESSIBILITÉ ── */
@media (prefers-reduced-motion: reduce) {
    .btn-nouvel-evenement[b-epe73mvwus] { transition-duration: 0.05s !important; }
}

@media (prefers-contrast: high) {
    .btn-nouvel-evenement[b-epe73mvwus] { outline: 2px solid var(--forest-dark); outline-offset: 2px; }
}
/* /Pages/MaPlanification/RecapJour.razor.rz.scp.css */
/* ── OVERLAY ── */
.recap-overlay[b-ihpnbjxbxw] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* ── PANEL (centré) ── */
.recap-panel[b-ihpnbjxbxw] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── EN-TÊTE ── */
.recap-entete[b-ihpnbjxbxw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.recap-date-titre[b-ihpnbjxbxw] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-transform: capitalize;
}

.recap-fermer[b-ihpnbjxbxw] {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    line-height: 1;
}

.recap-fermer:hover[b-ihpnbjxbxw] { background: var(--bg-secondary); }

/* ── CORPS ── */
.recap-corps[b-ihpnbjxbxw] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    min-height: 60px;
}

.recap-vide[b-ihpnbjxbxw] {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
    padding: var(--spacing-md) 0;
    margin: 0;
}

/* ── LIGNE ÉVÉNEMENT ── */
.recap-event[b-ihpnbjxbxw] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: filter 0.15s ease;
}

.recap-event:hover[b-ihpnbjxbxw] { filter: brightness(0.93); }

.recap-ev-icone[b-ihpnbjxbxw] {
    font-size: 1rem;
    flex-shrink: 0;
}

.recap-ev-contenu[b-ihpnbjxbxw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.recap-ev-titre[b-ihpnbjxbxw] {
    font-size: 0.875rem;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recap-ev-lapin[b-ihpnbjxbxw] {
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recap-ev-chevron[b-ihpnbjxbxw] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Couleurs par type (reprises du calendrier) */
.ev-soin[b-ihpnbjxbxw]         { background: rgba(13,110,253,0.10);  border-left-color: #0d6efd; color: #084298; }
.ev-pesee[b-ihpnbjxbxw]        { background: rgba(253,126,20,0.10);   border-left-color: #fd7e14; color: #7e3900; }
.ev-reproduction[b-ihpnbjxbxw] { background: rgba(214,51,132,0.10);   border-left-color: #d63384; color: #6a0033; }
.ev-nettoyage[b-ihpnbjxbxw]    { background: rgba(127,176,105,0.12);  border-left-color: var(--forest-accent); color: var(--forest-dark); }
.ev-rappel[b-ihpnbjxbxw]       { background: rgba(245,158,11,0.12);   border-left-color: #f59e0b; color: #7c4700; }
.ev-autre[b-ihpnbjxbxw]        { background: var(--bg-secondary);     border-left-color: var(--border-subtle); color: var(--text-secondary); }

/* ── BOUTON AJOUTER ── */
.recap-ajouter[b-ihpnbjxbxw] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px var(--shadow-medium);
}

.recap-ajouter:hover[b-ihpnbjxbxw] { filter: brightness(1.08); }

/* /Pages/MesParametres/MesParametres.razor.rz.scp.css */
/* ========================================
   MESPARAMETRES.RAZOR.CSS — MOBILE-FIRST
   Breakpoints : 640px, 1024px
   ======================================== */

/* ── Wrapper page (lisibilité grands écrans) ── */
.params-page[b-snxn09kvio] {
    max-width: 960px;
    margin: 0 auto;
}

/* ── Hero ── */
.params-hero[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.params-hero-icon[b-snxn09kvio] {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--text-inverse);
    flex-shrink: 0;
}

.params-hero-title[b-snxn09kvio] {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin: 0;
    letter-spacing: -0.3px;
}

/* ── Layout ── */
.params-layout[b-snxn09kvio] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── Navigation ── */
.params-nav[b-snxn09kvio] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.params-nav--hidden[b-snxn09kvio] {
    display: none;
}

.params-nav-item[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    background: var(--bg-elevated);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--forest-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 8px var(--shadow-soft);
    min-height: var(--touch-target-comfortable);
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.params-nav-item[b-snxn09kvio]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 0;
}

.params-nav-item:hover[b-snxn09kvio] {
    border-color: var(--forest-accent);
    color: var(--text-inverse);
    transform: translateX(5px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.params-nav-item:hover[b-snxn09kvio]::before {
    transform: translateX(0);
}

.params-nav-item--active[b-snxn09kvio] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border-color: var(--forest-medium);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.params-nav-icon[b-snxn09kvio],
.params-nav-label[b-snxn09kvio],
.params-nav-arrow[b-snxn09kvio] {
    position: relative;
    z-index: 1;
}

.params-nav-icon[b-snxn09kvio] {
    width: 34px;
    height: 34px;
    background: rgba(127, 176, 105, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.params-nav-item:hover .params-nav-icon[b-snxn09kvio],
.params-nav-item--active .params-nav-icon[b-snxn09kvio] {
    background: rgba(255, 255, 255, 0.2);
}

.params-nav-label[b-snxn09kvio] { flex: 1; }

.params-nav-arrow[b-snxn09kvio] {
    font-size: 1rem;
    font-weight: bold;
    opacity: 0.45;
    transition: all 0.3s ease;
}

.params-nav-item:hover .params-nav-arrow[b-snxn09kvio],
.params-nav-item--active .params-nav-arrow[b-snxn09kvio] {
    opacity: 1;
    transform: translateX(3px);
}

/* ── Contenu ── */
.params-content[b-snxn09kvio] { flex: 1; }

.params-content--hidden[b-snxn09kvio] { display: none; }

/* ── Bouton retour mobile ── */
.params-back[b-snxn09kvio] {
    display: inline-flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--forest-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: var(--touch-target-min);
    margin-bottom: 1rem;
}

.params-back:hover[b-snxn09kvio] {
    background: var(--sage-light);
    border-color: var(--forest-accent);
}

/* ── Chargement ── */
.params-loading[b-snxn09kvio] {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

/* ── Section ── */
@keyframes params-fade-b-snxn09kvio {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.params-section--fade[b-snxn09kvio] {
    animation: params-fade-b-snxn09kvio 0.2s ease forwards;
}

.params-section[b-snxn09kvio] {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 16px var(--shadow-soft);
}

.params-section-header[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.params-section-header-icon[b-snxn09kvio] {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-inverse);
    flex-shrink: 0;
}

.params-section-title[b-snxn09kvio] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin: 0;
}

.params-section-desc[b-snxn09kvio] {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0 0 1.25rem 0;
}

/* ── Formulaire ── */
.params-form[b-snxn09kvio] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.params-field[b-snxn09kvio] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.params-label[b-snxn09kvio] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Input moderne — filled, coins arrondis 14px, sans bordure visible au repos */
[b-snxn09kvio] .params-input {
    width: 100% !important;
    background: var(--bg-secondary) !important;
    border: 2px solid transparent !important;
    border-radius: 14px !important;
    color: var(--text-primary) !important;
    font-size: 0.975rem !important;
    font-weight: 500 !important;
    padding: 0.75rem 1rem !important;
    min-height: var(--touch-target-min) !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.params-input[b-snxn09kvio]::placeholder {
    color: var(--text-secondary);
    opacity: 0.45;
    font-weight: 400;
}

[b-snxn09kvio] .params-input:focus {
    background: var(--bg-elevated) !important;
    border-color: var(--forest-accent) !important;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.12) !important;
}

[b-snxn09kvio] .params-input--readonly {
    background: rgba(127, 176, 105, 0.07) !important;
    color: var(--text-secondary) !important;
    cursor: default !important;
    font-weight: 400 !important;
}

 [b-snxn09kvio] .params-input--readonly:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Hint sous le champ */
.params-field-hint[b-snxn09kvio] {
    font-size: 0.775rem;
    color: var(--text-secondary);
    opacity: 0.7;
    padding-left: 0.25rem;
}

/* Champ email : espace sous lui avant le bouton reset */
.params-field + .params-reset-btn[b-snxn09kvio] {
    margin-top: 1.25rem;
}

/* ── Bouton reset mot de passe ── */
.params-reset-btn[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    color: var(--forest-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    min-height: var(--touch-target-min);
}

.params-reset-btn:hover:not(:disabled)[b-snxn09kvio] {
    border-color: var(--forest-accent);
    background: var(--bg-elevated);
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.params-reset-btn:disabled[b-snxn09kvio] {
    opacity: 0.5;
    cursor: not-allowed;
}

.params-reset-btn-icon[b-snxn09kvio] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.params-reset-btn-label[b-snxn09kvio] {
    flex: 1;
    font-weight: 500;
}

.params-reset-btn-arrow[b-snxn09kvio] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.params-reset-btn:hover:not(:disabled) .params-reset-btn-arrow[b-snxn09kvio] {
    transform: translateX(3px);
}

/* ── Séparateur de groupe ── */
.params-group-sep[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0 0.25rem;
}

.params-group-sep[b-snxn09kvio]::before,
.params-group-sep[b-snxn09kvio]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.params-group-label[b-snxn09kvio] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ── Toggle langue compact ── */
.lang-toggle[b-snxn09kvio] {
    display: flex;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    padding: 3px;
    gap: 2px;
}

.lang-toggle-btn[b-snxn09kvio] {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.25s ease;
    min-height: 38px;
}

.lang-toggle-btn--active[b-snxn09kvio] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    box-shadow: 0 2px 8px var(--shadow-medium);
}

.lang-toggle-btn:hover:not(.lang-toggle-btn--active):not(:disabled)[b-snxn09kvio] {
    background: var(--bg-elevated);
    color: var(--forest-dark);
}

.lang-toggle-btn:disabled[b-snxn09kvio] {
    cursor: default;
}

/* ── Messages ── */
.params-alert[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: params-fade-b-snxn09kvio 0.2s ease;
}

.params-alert--success[b-snxn09kvio] {
    background: rgba(127, 176, 105, 0.12);
    border: 1px solid var(--forest-accent);
    color: var(--forest-dark);
}

.params-alert--error[b-snxn09kvio] {
    background: rgba(220, 53, 69, 0.07);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #842029;
}

/* ── Bouton Enregistrer ── */
.params-form-footer[b-snxn09kvio] {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: flex-end;
}

.params-btn-save[b-snxn09kvio] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px var(--shadow-medium);
    min-height: var(--touch-target-min);
}

.params-btn-save:hover:not(:disabled)[b-snxn09kvio] {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px var(--shadow-medium);
}

.params-btn-save:active:not(:disabled)[b-snxn09kvio] {
    transform: translateY(0);
}

.params-btn-save:disabled[b-snxn09kvio] {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Alertes élevage ── */
.params-alerte-item[b-snxn09kvio] {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    border: 1.5px solid transparent;
    transition: border-color 0.2s ease;
    margin-bottom: 0.6rem;
}

.params-alerte-item:last-of-type[b-snxn09kvio] {
    margin-bottom: 0;
}

.params-alerte-item:hover[b-snxn09kvio] {
    border-color: var(--border-subtle);
}

.params-alerte-row[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.params-alerte-icon[b-snxn09kvio] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.params-alerte-info[b-snxn09kvio] {
    flex: 1;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.params-alerte-label[b-snxn09kvio] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest-dark);
}

.params-alerte-desc[b-snxn09kvio] {
    font-size: 0.775rem;
    color: var(--text-secondary);
}

.params-alerte-input[b-snxn09kvio] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.params-input--number[b-snxn09kvio] {
    width: 68px;
    text-align: center;
    font-weight: 700;
    font-size: 0.975rem;
    padding: 0.45rem 0.5rem;
    min-height: unset;
    border-radius: var(--radius-lg);
}

.params-alerte-unit[b-snxn09kvio] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* ── 640px+ ── */
@media (min-width: 640px) {
    .params-section[b-snxn09kvio] {
        padding: 1.75rem;
    }

    .params-hero[b-snxn09kvio] {
        padding: 1.5rem 2rem;
    }

    .params-hero-title[b-snxn09kvio] {
        font-size: 1.5rem;
    }
}

/* ── 1024px+ ── */
@media (min-width: 1024px) {
    .params-layout[b-snxn09kvio] {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .params-nav[b-snxn09kvio] {
        width: 220px;
        flex-shrink: 0;
        position: sticky;
        top: 1rem;
    }

    .params-nav--hidden[b-snxn09kvio] {
        display: flex !important;
    }

    .params-content--hidden[b-snxn09kvio] {
        display: block !important;
    }

    .params-nav-item:hover[b-snxn09kvio] {
        transform: translateX(4px);
    }
}

/* ── Accessibilité ── */
@media (prefers-reduced-motion: reduce) {
    .params-section--fade[b-snxn09kvio],
    .params-nav-item[b-snxn09kvio],
    .lang-toggle-btn[b-snxn09kvio],
    .params-btn-save[b-snxn09kvio],
    .params-back[b-snxn09kvio] {
        animation: none !important;
        transition-duration: 0.05s !important;
    }
}

@media (prefers-contrast: high) {
    .params-input[b-snxn09kvio] {
        border: 2px solid var(--forest-dark);
    }

    .params-nav-item[b-snxn09kvio],
    .params-section[b-snxn09kvio] {
        border-width: 2px;
        border-color: var(--forest-dark);
    }
}
/* /Pages/MonClapier/FormulaireLapin.razor.rz.scp.css */
/* ========================================
   FORMULAIRELAPIN.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 1er janvier 2026 (Thème Forest)
   Breakpoints : 640px, 1024px, 1280px
   Modal formulaire création/édition lapin
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* OVERLAY MODAL THÈME FOREST */
.modal-overlay-forest[b-9dfz3bvijn] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 0;
    animation: fadeIn-b-9dfz3bvijn 0.3s ease;
}

/* CARD MODAL Mobile (full-screen) */
.modal-card-forest[b-9dfz3bvijn] {
    background: var(--bg-elevated, #ffffff);
    border-radius: 0;
    width: 100%;
    min-height: 100vh;
    max-width: none;
    padding: var(--spacing-lg, 1.5rem);
    box-shadow: none;
    animation: slideUp-b-9dfz3bvijn 0.4s ease;
}

/* HEADER MODAL Mobile */
.modal-header-forest[b-9dfz3bvijn] {
    text-align: center;
    margin-bottom: var(--spacing-lg, 1.5rem);
    position: relative;
}

.modal-logo-forest[b-9dfz3bvijn] {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-primary, #2e7d32) 0%, var(--forest-medium, #388e3c) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
}

.modal-logo-img[b-9dfz3bvijn] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.modal-title-forest[b-9dfz3bvijn] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-primary, #2e7d32);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.modal-subtitle-forest[b-9dfz3bvijn] {
    font-size: 0.9rem;
    color: var(--forest-medium, #388e3c);
    margin: 0;
    font-weight: 500;
}

.btn-close-forest[b-9dfz3bvijn] {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: var(--forest-medium, #388e3c);
    font-size: 1.25rem;
    cursor: pointer;
    min-width: var(--touch-target-min, 44px);
    min-height: var(--touch-target-min, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md, 8px);
    transition: all 0.3s ease;
}

.btn-close-forest:hover[b-9dfz3bvijn] {
    background: var(--sage-light, #e8f5e9);
    color: var(--forest-dark, #1b5e20);
}

/* FORMULAIRE Mobile */
.lapin-form-forest[b-9dfz3bvijn] {
    animation: fadeIn-b-9dfz3bvijn 0.4s ease;
}

.lapin-form-grid[b-9dfz3bvijn] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md, 1rem);
    margin-bottom: var(--spacing-lg, 1.5rem);
}

.form-group-forest[b-9dfz3bvijn] {
    display: flex;
    flex-direction: column;
}

.form-group-full[b-9dfz3bvijn] {
    /* Full-width (mobile + desktop) */
}

.form-label-forest[b-9dfz3bvijn] {
    font-weight: 600;
    color: var(--forest-dark, #1b5e20);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

/* Cibler inputs générés par InputText/InputSelect/InputDate */
[b-9dfz3bvijn] .form-control-forest {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: var(--radius-md, 8px);
    font-size: 16px; /* CRITIQUE : Évite zoom iOS */
    transition: all 0.3s ease;
    background: var(--bg-primary, #ffffff);
    color: var(--forest-dark, #1b5e20);
    min-height: var(--touch-target-min, 44px);
}

[b-9dfz3bvijn] .form-control-forest:focus {
    outline: none;
    border-color: var(--forest-accent, #66bb6a);
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.15);
}

[b-9dfz3bvijn] .form-control-forest.invalid,
[b-9dfz3bvijn] .form-control-forest.modified.invalid {
    border-color: #dc3545;
}

[b-9dfz3bvijn] .form-control-forest.invalid:focus,
[b-9dfz3bvijn] .form-control-forest.modified.invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

/* Text helpers */
.form-text-forest[b-9dfz3bvijn] {
    font-size: 0.85rem;
    color: var(--forest-medium, #388e3c);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* Messages validation */
[b-9dfz3bvijn] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* Textarea */
[b-9dfz3bvijn] textarea.form-control-forest {
    resize: vertical;
    min-height: 100px;
}

/* FOOTER BOUTONS Mobile (vertical) */
.modal-footer-forest[b-9dfz3bvijn] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 1rem);
    padding-top: var(--spacing-lg, 1.5rem);
    border-top: 1px solid #dee2e6;
    margin-top: var(--spacing-lg, 1.5rem);
}

/* BOUTONS */
.btn-forest-primary[b-9dfz3bvijn] {
    background: linear-gradient(135deg, var(--forest-primary, #2e7d32) 0%, var(--forest-medium, #388e3c) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md, 8px);
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--touch-target-min, 44px);
}

.btn-forest-primary:hover:not(:disabled)[b-9dfz3bvijn] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-forest-primary:disabled[b-9dfz3bvijn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-forest-secondary[b-9dfz3bvijn] {
    background: transparent;
    color: var(--forest-medium, #388e3c);
    border: 2px solid var(--forest-medium, #388e3c);
    border-radius: var(--radius-md, 8px);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    min-height: var(--touch-target-min, 44px);
}

.btn-forest-secondary:hover:not(:disabled)[b-9dfz3bvijn] {
    border-color: var(--forest-primary, #2e7d32);
    color: var(--forest-primary, #2e7d32);
    background: var(--sage-light, #e8f5e9);
    transform: translateY(-2px);
}

.btn-forest-secondary:disabled[b-9dfz3bvijn] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ALERT ARCHIVAGE */
.alert-archive-warning[b-9dfz3bvijn] {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md, 8px);
    padding: 0.75rem 1rem;
    margin-bottom: var(--spacing-lg, 1.5rem);
    color: #664d03;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    word-break: break-word;
}

.alert-archive-warning i[b-9dfz3bvijn] {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ALERT ERREUR */
.alert-danger-forest[b-9dfz3bvijn] {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: var(--radius-md, 8px);
    padding: 1rem;
    margin-bottom: var(--spacing-lg, 1.5rem);
    color: #c33;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* ANIMATIONS */
@keyframes fadeIn-b-9dfz3bvijn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-9dfz3bvijn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Overlay avec padding */
    .modal-overlay-forest[b-9dfz3bvijn] {
        padding: var(--spacing-md, 1rem);
        align-items: center;
    }

    /* Card centrée, max-width */
    .modal-card-forest[b-9dfz3bvijn] {
        max-width: 600px;
        min-height: auto;
        max-height: 95vh;
        border-radius: var(--radius-2xl, 20px);
        padding: var(--spacing-xl, 2rem);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    /* Header spacing */
    .modal-header-forest[b-9dfz3bvijn] {
        margin-bottom: var(--spacing-xl, 2rem);
    }

    .modal-logo-forest[b-9dfz3bvijn] {
        width: 90px;
        height: 90px;
    }

    .modal-title-forest[b-9dfz3bvijn] {
        font-size: 1.75rem;
    }

    .modal-subtitle-forest[b-9dfz3bvijn] {
        font-size: 1rem;
    }

    /* Grid 2 colonnes */
    .lapin-form-grid[b-9dfz3bvijn] {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg, 1.5rem);
    }

    /* Champs full-width (2 colonnes) */
    .form-group-full[b-9dfz3bvijn] {
        grid-column: 1 / -1;
    }

    /* Labels plus grands */
    .form-label-forest[b-9dfz3bvijn] {
        font-size: 1rem;
    }

    /* Inputs padding augmenté */
    [b-9dfz3bvijn] .form-control-forest {
        padding: 1rem 1.25rem;
    }

    /* Footer horizontal */
    .modal-footer-forest[b-9dfz3bvijn] {
        flex-direction: row;
        justify-content: center;
    }

    /* Boutons auto-width */
    .btn-forest-primary[b-9dfz3bvijn],
    .btn-forest-secondary[b-9dfz3bvijn] {
        width: auto;
        min-width: 150px;
    }
}

/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Card élargie */
    .modal-card-forest[b-9dfz3bvijn] {
        max-width: 700px;
        padding: var(--spacing-2xl, 2.5rem);
    }

    /* Grid gap augmenté */
    .lapin-form-grid[b-9dfz3bvijn] {
        gap: var(--spacing-xl, 2rem);
    }

    /* Inputs padding max */
    [b-9dfz3bvijn] .form-control-forest {
        padding: 1.125rem 1.5rem;
    }

    /* Boutons min-width augmenté */
    .btn-forest-primary[b-9dfz3bvijn],
    .btn-forest-secondary[b-9dfz3bvijn] {
        min-width: 180px;
    }

    /* Textarea plus haute */
    [b-9dfz3bvijn] textarea.form-control-forest {
        min-height: 120px;
    }
}

/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Card max-width finale */
    .modal-card-forest[b-9dfz3bvijn] {
        max-width: 750px;
    }
}

/* ========================================
   AUTOCOMPLETE CUSTOM (Couleur / Race)
   ======================================== */

.autocomplete-wrapper[b-9dfz3bvijn] {
    position: relative;
}

.autocomplete-dropdown[b-9dfz3bvijn] {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-elevated, #ffffff);
    border: 2px solid var(--forest-accent, #7fb069);
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 4px 16px var(--shadow-medium, rgba(26, 61, 10, 0.2));
    max-height: 220px;
    overflow-y: auto;
    animation: fadeIn-b-9dfz3bvijn 0.15s ease;
}

.autocomplete-section-header[b-9dfz3bvijn] {
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-white);
    background: var(--forest-dark, #1b5e20);
    border-bottom: 1px solid var(--border-subtle, rgba(127, 176, 105, 0.25));
    position: sticky;
    top: 0;
}

.autocomplete-item[b-9dfz3bvijn] {
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    color: var(--forest-dark, #1a3d0a);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(127, 176, 105, 0.12);
    transition: background 0.1s ease;
    user-select: none;
}

.autocomplete-item:last-child[b-9dfz3bvijn] {
    border-bottom: none;
}

.autocomplete-item:hover[b-9dfz3bvijn] {
    background: var(--sage-light, #d4f1c9);
    color: var(--forest-primary, #2d5016);
}

/* ========================================
   CUSTOM SELECT TRIGGER (Sexe, Statut, Reproducteur, Père, Mère)
   ======================================== */

.custom-select-trigger[b-9dfz3bvijn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.custom-select-chevron[b-9dfz3bvijn] {
    font-size: 0.8rem;
    color: var(--forest-medium, #4a7c59);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.custom-select-chevron.open[b-9dfz3bvijn] {
    transform: rotate(180deg);
}

.autocomplete-item-selected[b-9dfz3bvijn] {
    background: var(--sage-light, #d4f1c9);
    font-weight: 600;
    color: var(--forest-primary, #2d5016);
}

.autocomplete-item.autocomplete-item-selected:hover[b-9dfz3bvijn] {
    background: var(--sage-light, #d4f1c9);
}

/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .modal-overlay-forest[b-9dfz3bvijn],
    .modal-card-forest[b-9dfz3bvijn],
    .btn-forest-primary[b-9dfz3bvijn],
    .btn-forest-secondary[b-9dfz3bvijn],
    [b-9dfz3bvijn] .form-control-forest {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
    [b-9dfz3bvijn] .form-control-forest {
        border: 2px solid var(--forest-dark, #1b5e20);
    }

    [b-9dfz3bvijn] .form-control-forest:focus {
        border: 3px solid var(--forest-primary, #2e7d32);
    }
}
/* /Pages/MonClapier/MonClapier.razor.rz.scp.css */
/* ========================================
   MONCLAPIER.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Page principale module ClapierManager
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Container principal mobile */
.container-fluid[b-gopywdk0wx] {
    padding-left: var(--spacing-md) !important;
    padding-right: var(--spacing-md) !important;
}

/* === GENRE BADGES === */
.genre-badge[b-gopywdk0wx] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    border: 2px solid;
    flex-shrink: 0;
}

.genre-male[b-gopywdk0wx] {
    color: #0d6efd;
    border-color: #0d6efd;
}

.genre-female[b-gopywdk0wx] {
    color: #d63384;
    border-color: #d63384;
}

.genre-neutral[b-gopywdk0wx] {
    color: #6f42c1;
    border-color: #6f42c1;
}

/* === TEXTE === */
.mon-texte-vert[b-gopywdk0wx] {
    color: var(--forest-medium);
}


/* === CARDS LAPINS === */
.card.lapin[b-gopywdk0wx] {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
}

.card.lapin:hover[b-gopywdk0wx] {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 2rem var(--forest-medium) !important;
    border-color: rgba(13, 110, 253, 0.2);
}

.card-icon[b-gopywdk0wx] {
    color: var(--forest-primary);
}

/* === INFO SECTIONS === */
.info-item[b-gopywdk0wx],
.parent-info[b-gopywdk0wx] {
    padding: 0.375rem;
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: var(--radius-md);
    border-left: 3px solid #dee2e6;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.info-item:hover[b-gopywdk0wx],
.parent-info:hover[b-gopywdk0wx] {
    border-left-color: var(--forest-medium);
}

.parent-link[b-gopywdk0wx] {
    color: var(--forest-medium);
    text-decoration: none;
    font-weight: 500;
}

.parent-link:hover[b-gopywdk0wx] {
    text-decoration: underline;
    color: var(--forest-dark, #1a5c2a);
}

/* === COMMENTAIRE === */
.commentaire-content[b-gopywdk0wx] {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-family: 'Menlo', 'Consolas', 'Courier New', monospace;
    line-height: 1.25;
    max-height: 6em;
    overflow-y: auto;
    white-space: pre-line;
    word-break: break-word;
    transition: border-color 0.2s;
}

.commentaire-content[b-gopywdk0wx]::-webkit-scrollbar {
    width: 7px;
    background: #f8f9fa;
}

.commentaire-content[b-gopywdk0wx]::-webkit-scrollbar-thumb {
    background: #dde1e6;
    border-radius: 4px;
}

/* === FONT MONO (TATTOO) === */
.fw-mono[b-gopywdk0wx] {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    background-color: rgba(108, 117, 125, 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-sm);
}

/* === RECHERCHE PRINCIPALE === */
.recherche-principale .recherche-input[b-gopywdk0wx] {
    border-radius: var(--radius-lg);
    border: 2px solid #e9ecef;
    padding: 0.85rem 1rem;
    font-size: 16px; /* CRITIQUE : Évite zoom iOS */
    min-height: var(--touch-target-min);
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
}

.recherche-input[b-gopywdk0wx]::placeholder {
    color: var(--forest-medium);
}

.recherche-principale .recherche-input:focus[b-gopywdk0wx] {
    border-color: var(--forest-medium);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
    color: var(--forest-medium);
}

/* === FILTRES PREMIUM === */
.filtres-premium-container[b-gopywdk0wx] {
    position: relative;
}

.filtres-premium-container .d-flex.align-items-center.justify-content-between[b-gopywdk0wx] {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.75rem;
}

.filtres-premium-container .d-flex.align-items-center.gap-md-3[b-gopywdk0wx] {
    flex-direction: column;
    gap: 0.5rem !important;
    width: 100%;
}

.filtres-toggle-btn[b-gopywdk0wx] {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-weight: 500;
    min-height: var(--touch-target-min);
}

.filtres-toggle-btn.active[b-gopywdk0wx] {
    background: linear-gradient(135deg, var(--forest-primary), var(--forest-medium));
    border-color: var(--forest-primary);
    color: white;
}

.filtres-toggle-btn.active:hover[b-gopywdk0wx] {
    background: #1a3d0a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* === FILTRES AVANCÉS === */
.filtres-avances[b-gopywdk0wx] {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.filtres-avances.show[b-gopywdk0wx] {
    max-height: 600px;
    opacity: 1;
}

.filtres-avances.show .filtres-avances-content[b-gopywdk0wx] {
    animation: slideInDown 0.4s ease-out;
}

.filtres-avances-content[b-gopywdk0wx] {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* === BADGES FILTRES === */
.filtres-badges[b-gopywdk0wx] {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #e9ecef;
}

.filtre-badge[b-gopywdk0wx] {
    border-radius: var(--radius-full);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid #dee2e6;
    background: white;
    color: var(--forest-medium);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filtre-badge:hover[b-gopywdk0wx] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--forest-primary);
    color: var(--forest-primary);
}

.filtre-badge:focus[b-gopywdk0wx] {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem var(--sage-light);
    border-color: var(--forest-primary);
}

.filtre-badge.active[b-gopywdk0wx] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    border-color: var(--forest-primary);
    color: white;
    transform: scale(1.05);
}

/* === BOUTONS TRI (Mobile : 2 cols) === */
.tri-btn[b-gopywdk0wx] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 0 !important;
    border-radius: var(--radius-md);
    background: var(--sage-light);
    color: var(--forest-primary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target-min);
}

.tri-btn:hover[b-gopywdk0wx] {
    border: 2px solid var(--forest-primary);
    color: var(--forest-primary);
    background: var(--sage-light);
    transform: translateY(-2px);
}

.tri-btn.active[b-gopywdk0wx],
.btn-group .btn-check:checked + .tri-btn[b-gopywdk0wx] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    border-color: var(--forest-medium);
    outline: none !important;
}

/* === FORM SELECT === */
.form-select-sm[b-gopywdk0wx] {
    border-radius: var(--radius-md);
    border: 1px solid #dee2e6;
    padding: 0.6rem 0.75rem;
    transition: all 0.3s ease;
    color: var(--forest-medium);
    font-size: 16px; /* Évite zoom iOS */
    min-height: var(--touch-target-min);
}

.form-select-sm:focus[b-gopywdk0wx] {
    border-color: var(--forest-primary);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

/* === MODAL CRÉATION (Full-screen mobile) === */
.creation-overlay[b-gopywdk0wx] {
    position: fixed;
    inset: 0;
    z-index: 1055;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.creation-form-card[b-gopywdk0wx] {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    padding: var(--spacing-lg);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
    width: 100%;
    min-width: 320px;
    margin-top: 0;
    animation: slideUp 0.4s ease;
    min-height: 100vh;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Container padding augmenté */
    .container-fluid[b-gopywdk0wx] {
        padding-left: var(--spacing-lg) !important;
        padding-right: var(--spacing-lg) !important;
    }

    /* Genre badge légèrement agrandi */
    .genre-badge[b-gopywdk0wx] {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.35rem;
    }

    /* Cards padding augmenté */
    .card.lapin[b-gopywdk0wx] {
        padding: var(--spacing-lg);
    }

    /* Info items padding augmenté */
    .info-item[b-gopywdk0wx],
    .parent-info[b-gopywdk0wx] {
        padding: 0.5rem;
        font-size: 0.95rem;
    }

    /* Commentaire font-size augmenté */
    .commentaire-content[b-gopywdk0wx] {
        font-size: 0.95rem;
    }

    /* Recherche padding augmenté */
    .recherche-principale .recherche-input[b-gopywdk0wx] {
        padding: 1rem 1.25rem;
    }

    /* Filtres layout horizontal partiel */
    .filtres-premium-container .d-flex.align-items-center.justify-content-between[b-gopywdk0wx] {
        flex-direction: row;
    }

    .filtres-toggle-btn[b-gopywdk0wx] {
        width: auto;
        padding: 0.75rem 1.5rem;
    }

    /* Filtres avancés padding augmenté */
    .filtres-avances-content[b-gopywdk0wx] {
        padding: var(--spacing-lg);
    }

    .filtres-avances.show[b-gopywdk0wx] {
        max-height: 550px;
    }

    /* Badges filtres légèrement agrandis */
    .filtre-badge[b-gopywdk0wx] {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }

    /* Tri buttons font augmenté */
    .tri-btn[b-gopywdk0wx] {
        font-size: 0.95rem;
    }

    /* Modal overlay avec padding */
    .creation-overlay[b-gopywdk0wx] {
        padding: var(--spacing-md);
        align-items: center;
    }

    /* Modal card centrée */
    .creation-form-card[b-gopywdk0wx] {
        border-radius: var(--radius-2xl);
        max-width: 500px;
        margin-top: 0;
        min-height: auto;
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container padding max */
    .container-fluid[b-gopywdk0wx] {
        padding-left: var(--spacing-xl) !important;
        padding-right: var(--spacing-xl) !important;
    }

    /* Genre badge taille desktop */
    .genre-badge[b-gopywdk0wx] {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    /* Cards padding desktop */
    .card.lapin[b-gopywdk0wx] {
        padding: var(--spacing-xl);
    }

    /* Filtres layout complètement horizontal */
    .filtres-premium-container .d-flex.align-items-center.gap-md-3[b-gopywdk0wx] {
        flex-direction: row;
        gap: 1.5rem !important;
    }

    /* Filtres avancés max-height augmenté */
    .filtres-avances.show[b-gopywdk0wx] {
        max-height: 500px;
    }

    .filtres-avances-content[b-gopywdk0wx] {
        padding: var(--spacing-xl);
    }

    /* Modal max-width élargie */
    .creation-form-card[b-gopywdk0wx] {
        max-width: 650px;
        padding: var(--spacing-2xl);
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Modal encore plus large si besoin */
    .creation-form-card[b-gopywdk0wx] {
        max-width: 700px;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .card.lapin[b-gopywdk0wx],
    .tri-btn[b-gopywdk0wx],
    .filtre-badge[b-gopywdk0wx],
    .filtres-toggle-btn[b-gopywdk0wx],
    .filtres-avances[b-gopywdk0wx],
    .creation-overlay[b-gopywdk0wx],
    .creation-form-card[b-gopywdk0wx],
    .recherche-input[b-gopywdk0wx] {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
    .filtre-badge[b-gopywdk0wx],
    .tri-btn[b-gopywdk0wx] {
        border: 2px solid var(--forest-dark);
    }

    .filtre-badge:hover[b-gopywdk0wx],
    .filtre-badge.active[b-gopywdk0wx],
    .tri-btn:hover[b-gopywdk0wx],
    .tri-btn.active[b-gopywdk0wx] {
        border: 2px solid var(--neutral-white);
    }
}


/* ========================================
   BOUTON ARCHIVER
   Ton terreux/ambré, complémentaire au vert forêt
   ======================================== */

.btn-archive[b-gopywdk0wx] {
    background-color: transparent;
    border: 1.5px solid #8b6914;
    color: #8b6914;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-archive:hover[b-gopywdk0wx] {
    background-color: #8b6914;
    color: var(--text-inverse);
    box-shadow: 0 2px 8px rgba(139, 105, 20, 0.3);
}

.btn-archive:disabled[b-gopywdk0wx] {
    opacity: 0.55;
    pointer-events: none;
}

/* Tactile : toujours rempli, pas de hover sur touchscreen */
@media (hover: none) {
    .btn-archive[b-gopywdk0wx] {
        background-color: #8b6914;
        color: var(--text-inverse);
    }
}


/* ========================================
   MODAL FOREST
   Intégration dans le thème de l'application
   ======================================== */

.modal-forest[b-gopywdk0wx] {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 1rem 3rem var(--shadow-strong);
    overflow: hidden;
}

.modal-forest .modal-header[b-gopywdk0wx] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--text-inverse);
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-forest .modal-title[b-gopywdk0wx] {
    color: var(--text-inverse);
    font-weight: 600;
}

.modal-forest .modal-body[b-gopywdk0wx] {
    padding: 1.5rem;
    background: var(--bg-elevated);
}

.modal-forest .modal-footer[b-gopywdk0wx] {
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    gap: 0.75rem;
}

.modal-forest .form-select[b-gopywdk0wx] {
    border-radius: var(--radius-md);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.modal-forest .form-select:focus[b-gopywdk0wx] {
    border-color: var(--forest-medium);
    box-shadow: 0 0 0 0.2rem var(--sage-light);
}


/* ========================================
   CARTE LAPIN — RESPONSIVE
   Mobile (< 1024px) : header + actions uniquement
   Desktop (≥ 1024px) : header + détails + actions
   ======================================== */

.lapin-meta[b-gopywdk0wx] {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Détails cachés par défaut (mobile-first) */
.lapin-details-desktop[b-gopywdk0wx] {
    display: none;
}

/* Carte mobile : padding resserré */
.card.lapin[b-gopywdk0wx] {
    padding: var(--spacing-sm) !important;
}

/* Boutons d'action : toujours horizontaux, compacts sur mobile */
.lapin-actions[b-gopywdk0wx] {
    display: flex;
    gap: var(--spacing-sm);
}

.lapin-actions .btn[b-gopywdk0wx] {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Desktop ≥ 1024px : détails visibles, boutons normaux */
@media (min-width: 1024px) {
    .lapin-details-desktop[b-gopywdk0wx] {
        display: flex;
        flex-direction: column;
    }

    .card.lapin[b-gopywdk0wx] {
        padding: var(--spacing-lg) !important;
    }

    .lapin-actions .btn[b-gopywdk0wx] {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}


/* ========================================
   FILTRES GROUPÉS
   Badges organisés par catégorie avec séparateur
   ======================================== */

.filtre-groupe[b-gopywdk0wx] {
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.filtre-groupe:last-child[b-gopywdk0wx] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filtre-groupe-label[b-gopywdk0wx] {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--forest-medium);
    opacity: 0.75;
    margin-bottom: var(--spacing-sm);
}

/* Sur grand desktop (≥ 1280px), les groupes passent en ligne */
@media (min-width: 1280px) {
    .filtres-badges[b-gopywdk0wx] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
        align-items: flex-start;
    }

    .filtre-groupe[b-gopywdk0wx] {
        border-bottom: none;
        border-right: 1px solid var(--border-subtle);
        padding-bottom: 0;
        padding-right: var(--spacing-lg);
        margin-bottom: 0;
    }

    .filtre-groupe:last-child[b-gopywdk0wx] {
        border-right: none;
        padding-right: 0;
    }
}


/* ========================================
   STATS CARDS — MINIMALISTE MOBILE
   < 1024px : barre compacte 4-en-ligne
   ≥ 1024px : cards normales (Bootstrap)
   ======================================== */

@media (max-width: 1023px) {
    /* Barre unifiée pill */
    .stats-row[b-gopywdk0wx] {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        flex-wrap: nowrap;
        background: var(--bg-secondary);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 1rem !important;
    }

    /* 4 colonnes égales quelle que soit la largeur */
    .stats-col[b-gopywdk0wx] {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        padding: 0 !important;
    }

    /* Card transparente, sans ombre ni radius */
    .stats-card[b-gopywdk0wx] {
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        height: auto !important;
    }

    /* Corps compact */
    .stats-body[b-gopywdk0wx] {
        padding: 0.6rem 0.25rem !important;
        gap: 0.1rem;
    }

    /* Icône réduite */
    .stats-icon[b-gopywdk0wx] {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }

    /* Chiffre compact */
    .stats-number[b-gopywdk0wx] {
        font-size: 0.95rem !important;
        margin: 0 !important;
        line-height: 1.1;
        font-weight: 700;
    }

    /* Label masqué sur mobile */
    .stats-label[b-gopywdk0wx] {
        display: none;
    }

    /* Séparateur vertical entre chaque stat */
    .stats-col:not(:last-child) .stats-card[b-gopywdk0wx] {
        border-right: 1px solid var(--border-subtle) !important;
    }
}


/* ========================================
   ACCENT SEXE — Bordure gauche colorée
   Identifie le sexe au premier regard
   ======================================== */

.card.lapin.lapin--male[b-gopywdk0wx] {
    border: 2px solid #0d6efd !important;
}

.card.lapin.lapin--female[b-gopywdk0wx] {
    border: 2px solid #d63384 !important;
}

.card.lapin.lapin--neutral[b-gopywdk0wx] {
    border: 2px solid #6f42c1 !important;
}


/* ========================================
   LAPIN INFO LINE
   Ligne icône + texte pour race et couleur
   ======================================== */

.lapin-info-line[b-gopywdk0wx] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.lapin-info-line .card-icon[b-gopywdk0wx] {
    font-size: 0.8rem;
    flex-shrink: 0;
    color: var(--forest-medium);
    opacity: 0.7;
}

/* === TOGGLE VUE (Actifs / Tous / Archivés) === */
.vue-toggle[b-gopywdk0wx] {
    display: flex;
    gap: 0;
    background: var(--sage-light);
    border-radius: var(--radius-full);
    padding: 3px;
}

.vue-btn[b-gopywdk0wx] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.45rem 0.5rem;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--forest-primary);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    min-height: var(--touch-target-min);
    white-space: nowrap;
}

.vue-btn.active[b-gopywdk0wx] {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-medium) 100%);
    color: var(--neutral-white);
    box-shadow: 0 2px 8px var(--shadow-medium);
}

.vue-btn:not(.active):hover[b-gopywdk0wx] {
    background: rgba(45, 80, 22, 0.1);
}

@media (min-width: 640px) {
    .vue-toggle[b-gopywdk0wx] {
        width: fit-content;
        flex-shrink: 0;
    }

    .vue-btn[b-gopywdk0wx] {
        flex: none;
        padding: 0.45rem 1rem;
        font-size: 0.875rem;
    }
}

/* Grille 2×2 mobile : race, couleur, statut, naissance */
.lapin-info-grid[b-gopywdk0wx] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 0.5rem;
}

.lapin-info-cell[b-gopywdk0wx] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    overflow: hidden;
}

.lapin-info-cell span[b-gopywdk0wx] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.lapin-info-cell .card-icon[b-gopywdk0wx] {
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Desktop : éléments mobile-only masqués */
@media (min-width: 1024px) {
    .lapin-info-line[b-gopywdk0wx],
    .lapin-mobile-only[b-gopywdk0wx],
    .lapin-info-grid[b-gopywdk0wx] {
        display: none;
    }
}
/* /Pages/TableauDeBord/TableauDeBord.razor.rz.scp.css */
/* ========================================
   TABLEAUDEBORD.RAZOR.CSS - MOBILE-FIRST
   Refonte complète : 28 décembre 2025
   Breakpoints : 640px, 1024px, 1280px
   Dashboard avec grille statistiques responsive
   ======================================== */

/* ========================================
   BASE MOBILE (360px+)
   ======================================== */

/* Container principal mobile */
.container-fluid[b-9ej2exko5v] {
    padding-left: var(--spacing-md) !important;
    padding-right: var(--spacing-md) !important;
}

/* Grille dashboard 1 col mobile */
.dashboard-grid[b-9ej2exko5v] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Cards statistiques mobile */
.dashboard-card[b-9ej2exko5v] {
    border-left: 6px solid var(--forest-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
    min-height: var(--touch-target-min);
    cursor: pointer;
}

/* Variantes couleur border (selon type stat) */
.dashboard-card.card-primary[b-9ej2exko5v] {
    border-left-color: var(--forest-primary);
}

.dashboard-card.card-success[b-9ej2exko5v] {
    border-left-color: #28a745;
}

.dashboard-card.card-warning[b-9ej2exko5v] {
    border-left-color: #ffc107;
}

.dashboard-card.card-danger[b-9ej2exko5v] {
    border-left-color: #dc3545;
}

.dashboard-card.card-info[b-9ej2exko5v] {
    border-left-color: #17a2b8;
}

/* Hover effect touch-friendly */
.dashboard-card:hover[b-9ej2exko5v] {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 2rem rgba(46, 125, 50, 0.2);
    border-left-width: 8px;
}

.dashboard-card:active[b-9ej2exko5v] {
    transform: translateY(-2px);
}

/* Card header */
.dashboard-card .card-header[b-9ej2exko5v] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #e9ecef;
    margin-bottom: var(--spacing-sm);
}

/* Icône card */
.dashboard-card .card-icon[b-9ej2exko5v] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--sage-light);
    color: var(--forest-primary);
    flex-shrink: 0;
}

/* Titre card mobile */
.dashboard-card .card-title[b-9ej2exko5v] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-dark);
    margin: 0;
    line-height: 1.3;
}

/* Corps card */
.dashboard-card .card-body[b-9ej2exko5v] {
    padding: var(--spacing-sm) 0;
}

/* Valeur statistique mobile */
.dashboard-card .stat-value[b-9ej2exko5v] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

/* Label statistique */
.dashboard-card .stat-label[b-9ej2exko5v] {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge tendance */
.dashboard-card .stat-badge[b-9ej2exko5v] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.stat-badge.badge-success[b-9ej2exko5v] {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stat-badge.badge-danger[b-9ej2exko5v] {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Footer card (actions) */
.dashboard-card .card-footer[b-9ej2exko5v] {
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e9ecef;
    margin-top: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.dashboard-card .card-footer .btn[b-9ej2exko5v] {
    flex: 1;
    min-width: 100px;
    min-height: var(--touch-target-min);
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}

/* Section titre dashboard mobile */
.dashboard-header[b-9ej2exko5v] {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--forest-primary);
}

.dashboard-header h1[b-9ej2exko5v] {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: var(--spacing-xs);
}

.dashboard-header .subtitle[b-9ej2exko5v] {
    font-size: var(--font-size-sm);
    color: #6c757d;
}


/* ========================================
   SM : 640px+ (Large Phones / Phablets)
   ======================================== */

@media (min-width: 640px) {
    /* Container padding augmenté */
    .container-fluid[b-9ej2exko5v] {
        padding-left: var(--spacing-lg) !important;
        padding-right: var(--spacing-lg) !important;
    }

    /* Grille 2 cols */
    .dashboard-grid[b-9ej2exko5v] {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    /* Cards padding augmenté */
    .dashboard-card[b-9ej2exko5v] {
        padding: var(--spacing-lg);
    }

    /* Icône légèrement agrandie */
    .dashboard-card .card-icon[b-9ej2exko5v] {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.35rem;
    }

    /* Titre card légèrement agrandi */
    .dashboard-card .card-title[b-9ej2exko5v] {
        font-size: 1rem;
    }

    /* Valeur statistique agrandie */
    .dashboard-card .stat-value[b-9ej2exko5v] {
        font-size: 2rem;
    }

    /* Label statistique agrandi */
    .dashboard-card .stat-label[b-9ej2exko5v] {
        font-size: 0.95rem;
    }

    /* Badge tendance agrandi */
    .dashboard-card .stat-badge[b-9ej2exko5v] {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    /* Header dashboard agrandi */
    .dashboard-header h1[b-9ej2exko5v] {
        font-size: var(--font-size-2xl);
    }

    .dashboard-header .subtitle[b-9ej2exko5v] {
        font-size: var(--font-size-base);
    }
}


/* ========================================
   MD : 1024px+ (Tablets / Small Desktops)
   ======================================== */

@media (min-width: 1024px) {
    /* Container padding max */
    .container-fluid[b-9ej2exko5v] {
        padding-left: var(--spacing-xl) !important;
        padding-right: var(--spacing-xl) !important;
    }

    /* Grille 3 cols */
    .dashboard-grid[b-9ej2exko5v] {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }

    /* Cards padding max */
    .dashboard-card[b-9ej2exko5v] {
        padding: var(--spacing-xl);
    }

    /* Icône taille desktop */
    .dashboard-card .card-icon[b-9ej2exko5v] {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    /* Titre card desktop */
    .dashboard-card .card-title[b-9ej2exko5v] {
        font-size: 1.1rem;
    }

    /* Valeur statistique desktop */
    .dashboard-card .stat-value[b-9ej2exko5v] {
        font-size: 2.25rem;
    }

    /* Label statistique desktop */
    .dashboard-card .stat-label[b-9ej2exko5v] {
        font-size: 1rem;
    }

    /* Badge tendance desktop */
    .dashboard-card .stat-badge[b-9ej2exko5v] {
        font-size: 0.875rem;
        padding: 0.35rem 0.75rem;
    }

    /* Footer card actions horizontal */
    .dashboard-card .card-footer[b-9ej2exko5v] {
        gap: var(--spacing-md);
    }

    .dashboard-card .card-footer .btn[b-9ej2exko5v] {
        flex: 0 1 auto;
        min-width: 120px;
    }

    /* Header dashboard desktop */
    .dashboard-header[b-9ej2exko5v] {
        margin-bottom: var(--spacing-xl);
    }

    .dashboard-header h1[b-9ej2exko5v] {
        font-size: var(--font-size-3xl);
    }
}


/* ========================================
   LG : 1280px+ (Large Desktops)
   ======================================== */

@media (min-width: 1280px) {
    /* Grille 4 cols */
    .dashboard-grid[b-9ej2exko5v] {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-2xl);
    }

    /* Cards padding élargi */
    .dashboard-card[b-9ej2exko5v] {
        padding: var(--spacing-2xl);
    }

    /* Icône max size */
    .dashboard-card .card-icon[b-9ej2exko5v] {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
    }

    /* Valeur statistique max */
    .dashboard-card .stat-value[b-9ej2exko5v] {
        font-size: 2.5rem;
    }
}


/* ========================================
   ACCESSIBILITÉ & PRÉFÉRENCES UTILISATEUR
   ======================================== */

/* Réduction animations (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .dashboard-card[b-9ej2exko5v],
    .dashboard-card:hover[b-9ej2exko5v],
    .dashboard-card:active[b-9ej2exko5v] {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
        animation-iteration-count: 1 !important;
    }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
    .dashboard-card[b-9ej2exko5v] {
        border: 2px solid var(--forest-dark);
        border-left-width: 8px;
    }

    .dashboard-card:hover[b-9ej2exko5v] {
        border: 2px solid var(--forest-primary);
        border-left-width: 10px;
    }

    .dashboard-card .stat-value[b-9ej2exko5v] {
        color: var(--forest-dark);
    }
}
