/* _content/Spectrometre/Components/Account/Pages/Authentication/Login.razor.rz.scp.css */
/* Login Page - Design Application */

/* Bandeau sombre sous le menu pour garder le menu (texte blanc) lisible sur fond clair */
.login-page-nav-overlay[b-hjtrc2wefo] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.92) 0%, rgba(52, 95, 109, 0.6) 60%, transparent 100%);
    z-index: 1029;
    pointer-events: none;
}

.login-page-wrapper[b-hjtrc2wefo] {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background) 0%, hsl(220, 14%, 96%) 100%);
    position: relative;
    overflow: hidden;
}

.login-page-wrapper[b-hjtrc2wefo]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 119, 61, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-b-hjtrc2wefo 15s ease-in-out infinite;
}

.login-page-wrapper[b-hjtrc2wefo]::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 95, 109, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-b-hjtrc2wefo 20s ease-in-out infinite reverse;
}

@keyframes pulse-b-hjtrc2wefo {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) translateY(-20px);
        opacity: 0.3;
    }
}

.login-container[b-hjtrc2wefo] {
    position: relative;
    z-index: 1;
}

.login-card[b-hjtrc2wefo] {
    background: white;
    border-radius: 16px;
    border: 1px solid hsl(220, 13%, 90%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.login-card:hover[b-hjtrc2wefo] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.login-header[b-hjtrc2wefo] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    padding: 2rem 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.login-header[b-hjtrc2wefo]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.login-title[b-hjtrc2wefo] {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.login-subtitle[b-hjtrc2wefo] {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.login-section-title[b-hjtrc2wefo] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.login-divider[b-hjtrc2wefo] {
    border: none;
    border-top: 2px solid hsl(220, 13%, 90%);
    margin: 1.5rem 0;
}

/* Form Controls */
.login-form-group[b-hjtrc2wefo] {
    margin-bottom: 1.25rem;
}

.login-form-label[b-hjtrc2wefo] {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.login-form-control[b-hjtrc2wefo],
.login-form-control input[b-hjtrc2wefo],
input.login-form-control[b-hjtrc2wefo],
#Input\\.Email[b-hjtrc2wefo],
#Input\\.Password[b-hjtrc2wefo] {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid hsl(220, 13%, 90%) !important;
    border-radius: 10px !important;
    font-size: 0.9375rem !important;
    background: white !important;
    color: var(--foreground) !important;
    transition: all 0.3s ease !important;
}

.login-form-control:focus[b-hjtrc2wefo],
.login-form-control input:focus[b-hjtrc2wefo],
input.login-form-control:focus[b-hjtrc2wefo],
#Input\\.Email:focus[b-hjtrc2wefo],
#Input\\.Password:focus[b-hjtrc2wefo] {
    outline: none !important;
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1) !important;
}

.login-form-control[b-hjtrc2wefo]::placeholder,
.login-form-control input[b-hjtrc2wefo]::placeholder,
input.login-form-control[b-hjtrc2wefo]::placeholder,
#Input\\.Email[b-hjtrc2wefo]::placeholder,
#Input\\.Password[b-hjtrc2wefo]::placeholder {
    color: var(--muted-foreground) !important;
}

.login-checkbox-wrapper[b-hjtrc2wefo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.login-checkbox[b-hjtrc2wefo] {
    width: 18px;
    height: 18px;
    border: 2px solid hsl(220, 13%, 90%);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-checkbox:checked[b-hjtrc2wefo] {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.login-checkbox-label[b-hjtrc2wefo] {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    cursor: pointer;
    user-select: none;
}

/* Buttons */
.login-btn[b-hjtrc2wefo] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-btn-primary[b-hjtrc2wefo] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(52, 95, 109, 0.25);
}

.login-btn-primary:hover[b-hjtrc2wefo] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 95, 109, 0.35);
}

.login-btn-primary:active[b-hjtrc2wefo] {
    transform: translateY(0);
}

/* Links */
.login-links[b-hjtrc2wefo] {
    text-align: center;
    margin-top: 1.5rem;
}

.login-link[b-hjtrc2wefo] {
    display: block;
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-link:hover[b-hjtrc2wefo] {
    color: var(--gscv-orange);
    text-decoration: underline;
}

.login-link:last-child[b-hjtrc2wefo] {
    margin-bottom: 0;
}

/* External Login Section */
.external-login-card[b-hjtrc2wefo] {
    background: white;
    border-radius: 16px;
    border: 1px solid hsl(220, 13%, 90%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.external-login-card:hover[b-hjtrc2wefo] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.external-login-title[b-hjtrc2wefo] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

/* Validation Messages */
.validation-message[b-hjtrc2wefo] {
    color: var(--bs-danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.validation-summary[b-hjtrc2wefo] {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid var(--bs-danger);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--bs-danger);
}

/* StatusMessage Bootstrap alerts integration */
.alert[b-hjtrc2wefo] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert-danger[b-hjtrc2wefo] {
    background: rgba(229, 62, 62, 0.1);
    border-color: var(--bs-danger);
    color: var(--bs-danger);
}

.alert-success[b-hjtrc2wefo] {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--bs-success);
    color: var(--bs-success);
}

/* Responsive */
@media (max-width: 768px) {
    .login-page-wrapper[b-hjtrc2wefo] {
        padding: 1rem;
    }

    .login-header[b-hjtrc2wefo] {
        padding: 1.5rem 1rem;
        margin: -1rem -1rem 1rem -1rem;
    }

    .login-title[b-hjtrc2wefo] {
        font-size: 1.5rem;
    }

    .login-subtitle[b-hjtrc2wefo] {
        font-size: 0.9375rem;
    }

    .login-card[b-hjtrc2wefo],
    .external-login-card[b-hjtrc2wefo] {
        padding: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .login-page-wrapper[b-hjtrc2wefo] {
        padding: 0.75rem;
    }

    .login-header[b-hjtrc2wefo] {
        padding: 1.25rem 1rem;
    }

    .login-title[b-hjtrc2wefo] {
        font-size: 1.35rem;
    }

    .login-card[b-hjtrc2wefo],
    .external-login-card[b-hjtrc2wefo] {
        padding: 1.25rem !important;
        border-radius: 12px;
    }

    .login-form-control[b-hjtrc2wefo] {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .login-btn[b-hjtrc2wefo] {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}
/* _content/Spectrometre/Components/Account/Pages/DashboardOwner.razor.rz.scp.css */
/* Styles spécifiques au Dashboard Owner (vue dirigeant) */

/* Header principal */
.header-bar-dashboard[b-uicpgjzrrg] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-section-dashboard h1[b-uicpgjzrrg] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.welcome-section-dashboard p[b-uicpgjzrrg] {
    color: #64748b;
    font-size: 0.875rem;
}

.header-actions-dashboard[b-uicpgjzrrg] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary-modern-dashboard[b-uicpgjzrrg] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary-modern-dashboard:hover[b-uicpgjzrrg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 119, 61, 0.4);
}

.btn-secondary-modern-dashboard[b-uicpgjzrrg] {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary-modern-dashboard:hover[b-uicpgjzrrg] {
    background: #f8fafc;
    border-color: #cbd5f5;
}

/* Statistiques globales */
.stats-grid-dashboard[b-uicpgjzrrg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card-dashboard[b-uicpgjzrrg] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-card-dashboard:hover[b-uicpgjzrrg] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--bs-primary);
}

.stat-header-dashboard[b-uicpgjzrrg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon-dashboard[b-uicpgjzrrg] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.stat-icon-dashboard.teal[b-uicpgjzrrg] {
    background: linear-gradient(135deg, var(--gscv-teal) 0%, hsl(178, 45%, 45%) 100%);
}

.stat-icon-dashboard.blue[b-uicpgjzrrg] {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.stat-icon-dashboard.purple[b-uicpgjzrrg] {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stat-icon-dashboard.orange[b-uicpgjzrrg] {
    background: linear-gradient(135deg, var(--gscv-orange) 0%, hsl(18, 80%, 60%) 100%);
}

.stat-trend-dashboard[b-uicpgjzrrg] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
}

.stat-trend-dashboard.up[b-uicpgjzrrg] {
    background: #d1fae5;
    color: #059669;
}

.stat-trend-dashboard.down[b-uicpgjzrrg] {
    background: #fee2e2;
    color: #dc2626;
}

.stat-value-dashboard[b-uicpgjzrrg] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.stat-label-dashboard[b-uicpgjzrrg] {
    font-size: 0.875rem;
    color: #64748b;
}

/* Grilles de contenu */
.content-grid-dashboard[b-uicpgjzrrg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.three-columns-owner[b-uicpgjzrrg] {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-modern-dashboard[b-uicpgjzrrg] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-header-modern-dashboard[b-uicpgjzrrg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.card-title-modern-dashboard[b-uicpgjzrrg] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-action-dashboard[b-uicpgjzrrg] {
    color: var(--bs-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-action-dashboard:hover[b-uicpgjzrrg] {
    color: hsl(18, 80%, 50%);
}

/* Rendez-vous */
.appointment-list-dashboard[b-uicpgjzrrg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item-dashboard[b-uicpgjzrrg] {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
}

.appointment-item-dashboard:hover[b-uicpgjzrrg] {
    border-color: var(--bs-primary);
    background: white;
}

.appointment-date-dashboard[b-uicpgjzrrg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    color: white;
    border-radius: 10px;
    padding: 0.75rem;
    min-width: 60px;
}

.appointment-day-dashboard[b-uicpgjzrrg] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.appointment-month-dashboard[b-uicpgjzrrg] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.appointment-details-dashboard[b-uicpgjzrrg] {
    flex: 1;
}

.appointment-title-dashboard[b-uicpgjzrrg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.appointment-info-dashboard[b-uicpgjzrrg] {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.appointment-badge-dashboard[b-uicpgjzrrg] {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Graphiques */
.chart-container-dashboard[b-uicpgjzrrg] {
    position: relative;
    height: 300px;
}

.chart-container-dashboard.small-chart[b-uicpgjzrrg] {
    height: 220px;
}

.period-selector[b-uicpgjzrrg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.period-selector select[b-uicpgjzrrg] {
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    outline: none;
}

/* Actions rapides entreprise */
.quick-actions-dashboard[b-uicpgjzrrg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.quick-action-btn-dashboard[b-uicpgjzrrg] {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.quick-action-btn-dashboard:hover[b-uicpgjzrrg] {
    border-color: var(--bs-primary);
    background: white;
    transform: translateY(-2px);
}

.quick-action-icon-dashboard[b-uicpgjzrrg] {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.quick-action-label-dashboard[b-uicpgjzrrg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

/* Modals Owner (Manager / Service) */
.modal-backdrop-owner[b-uicpgjzrrg] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-owner[b-uicpgjzrrg] {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header-owner[b-uicpgjzrrg] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-owner h3[b-uicpgjzrrg] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-owner[b-uicpgjzrrg] {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
}

.modal-body-owner[b-uicpgjzrrg] {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
}

.form-group-owner label[b-uicpgjzrrg] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-owner[b-uicpgjzrrg] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.modal-footer-owner[b-uicpgjzrrg] {
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Responsivité */
@media (max-width: 1200px) {
    .content-grid-dashboard[b-uicpgjzrrg] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-bar-dashboard[b-uicpgjzrrg] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .welcome-section-dashboard h1[b-uicpgjzrrg] {
        font-size: 1.35rem;
    }

    .stats-grid-dashboard[b-uicpgjzrrg] {
        grid-template-columns: 1fr;
    }

    .quick-actions-dashboard[b-uicpgjzrrg] {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-header-modern-dashboard[b-uicpgjzrrg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .appointment-item-dashboard[b-uicpgjzrrg] {
        align-items: flex-start;
    }

    .appointment-info-dashboard[b-uicpgjzrrg] {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-bar-dashboard[b-uicpgjzrrg] {
        padding: 1rem;
        border-radius: 14px;
    }

    .btn-primary-modern-dashboard[b-uicpgjzrrg] {
        width: 100%;
        justify-content: center;
    }

    .stat-card-dashboard[b-uicpgjzrrg] {
        padding: 1.25rem;
    }

    .content-grid-dashboard[b-uicpgjzrrg] {
        gap: 1.25rem;
    }

    .card-modern-dashboard[b-uicpgjzrrg] {
        padding: 1.25rem;
    }

    .quick-actions-dashboard[b-uicpgjzrrg] {
        grid-template-columns: 1fr;
    }

    .chart-container-dashboard[b-uicpgjzrrg] {
        height: 240px;
    }
}

/* _content/Spectrometre/Components/Account/Pages/Evaluations/ObjectifsSocioProfessionnels.razor.rz.scp.css */
/* Page wrapper */
.objectifs-page[b-vmpoxrplhb] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    max-width:100vw;
}

/* Header */
.header-objectifs[b-vmpoxrplhb] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    margin-bottom: 1.25rem;
}

.header-title-row[b-vmpoxrplhb] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-vmpoxrplhb] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-title[b-vmpoxrplhb] {
    margin: 0;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.15;
}

.header-subtitle[b-vmpoxrplhb] {
    margin-top: 0.25rem;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Timeline Navigation */
.timeline-navigation[b-vmpoxrplhb] {
    position: sticky;
    top: 0;
    z-index: 90;
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-container[b-vmpoxrplhb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.timeline-item[b-vmpoxrplhb] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .timeline-item:hover[b-vmpoxrplhb] {
        transform: translateY(-2px);
    }

.timeline-marker[b-vmpoxrplhb] {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
}

.timeline-item.active .timeline-marker[b-vmpoxrplhb] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.25);
}

.timeline-item.completed .timeline-marker[b-vmpoxrplhb] {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.timeline-number[b-vmpoxrplhb] {
    font-size: 1.05rem;
}

.timeline-label[b-vmpoxrplhb] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 120px;
}

.timeline-item.active .timeline-label[b-vmpoxrplhb] {
    color: var(--bs-primary);
}

.timeline-item.completed .timeline-label[b-vmpoxrplhb] {
    color: #10b981;
}

.timeline-connector[b-vmpoxrplhb] {
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-item.completed .timeline-connector[b-vmpoxrplhb] {
    background: #10b981;
}

.timeline-item:last-child .timeline-connector[b-vmpoxrplhb] {
    display: none;
}

/* Sections */
.objectifs-section[b-vmpoxrplhb] {
    animation: fadeIn-b-vmpoxrplhb 0.25s ease;
}

@keyframes fadeIn-b-vmpoxrplhb {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-card[b-vmpoxrplhb] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-header[b-vmpoxrplhb] {
    padding: 1.1rem 1.25rem;
    color: white;
}

.section-header-row[b-vmpoxrplhb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .section-header-row h2[b-vmpoxrplhb] {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
    }

.gradient-a[b-vmpoxrplhb] {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
}

.gradient-b[b-vmpoxrplhb] {
    background: linear-gradient(90deg, var(--gscv-teal) 0%, var(--bs-primary) 100%);
}

.gradient-c[b-vmpoxrplhb] {
    background: linear-gradient(90deg, var(--gscv-orange) 0%, var(--gscv-teal) 100%);
}

.section-body[b-vmpoxrplhb] {
    padding: 1.25rem;
}

.section-description[b-vmpoxrplhb] {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.subsection[b-vmpoxrplhb] {
    margin-bottom: 2rem;
}

.subsection-title[b-vmpoxrplhb] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

/* Tables */
.table-responsive[b-vmpoxrplhb] {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.values-table[b-vmpoxrplhb] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.values-table th[b-vmpoxrplhb] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.values-table td[b-vmpoxrplhb] {
    background: #d4edda;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.objectives-table[b-vmpoxrplhb] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.objectives-table th[b-vmpoxrplhb] {
    background: white;
    color: var(--foreground);
    padding: 0.875rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
}

.objectives-table td[b-vmpoxrplhb] {
    background: white;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.label-cell[b-vmpoxrplhb] {
    font-weight: 500;
    color: var(--muted-foreground);
    white-space: nowrap;
    font-size: 0.875rem;
}

.engagement-table[b-vmpoxrplhb] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.engagement-table th[b-vmpoxrplhb] {
    background: linear-gradient(135deg, var(--gscv-teal) 0%, var(--bs-primary) 100%);
    color: white;
    padding: 0.875rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.engagement-table td[b-vmpoxrplhb] {
    background: white;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

/* Form Controls */
.form-control[b-vmpoxrplhb],
.form-select[b-vmpoxrplhb] {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--foreground);
    font-size: 0.875rem;
}

.form-control-sm[b-vmpoxrplhb],
.form-select-sm[b-vmpoxrplhb] {
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
}

.form-control:focus[b-vmpoxrplhb],
.form-select:focus[b-vmpoxrplhb] {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1);
}

/* Navigation buttons */
.section-navigation[b-vmpoxrplhb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.btn-next-section[b-vmpoxrplhb],
.btn-prev-section[b-vmpoxrplhb] {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next-section[b-vmpoxrplhb] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    margin-left: auto;
}

    .btn-next-section:hover[b-vmpoxrplhb] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(234, 119, 61, 0.35);
    }

.btn-prev-section[b-vmpoxrplhb] {
    background: white;
    border: 2px solid #dce4eb;
    color: var(--foreground);
}

    .btn-prev-section:hover[b-vmpoxrplhb] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

/* Responsive */
@media (max-width: 768px) {
    .objectifs-page[b-vmpoxrplhb] {
        padding: 1rem;
    }

    .header-objectifs[b-vmpoxrplhb] {
        padding: 1rem;
    }

    .header-title[b-vmpoxrplhb] {
        font-size: 1.35rem;
    }

    .timeline-navigation[b-vmpoxrplhb] {
        padding: 0.75rem 0.25rem;
    }

    .timeline-container[b-vmpoxrplhb] {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.25rem 0.75rem 0.75rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }

    .timeline-item[b-vmpoxrplhb] {
        flex: 0 0 auto;
        min-width: 110px;
        scroll-snap-align: center;
    }

    .timeline-connector[b-vmpoxrplhb] {
        display: none;
    }

    .section-body[b-vmpoxrplhb] {
        padding: 1rem;
    }

    .table-responsive[b-vmpoxrplhb] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .values-table th[b-vmpoxrplhb],
    .objectives-table th[b-vmpoxrplhb],
    .engagement-table th[b-vmpoxrplhb] {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }

    .values-table td[b-vmpoxrplhb],
    .objectives-table td[b-vmpoxrplhb],
    .engagement-table td[b-vmpoxrplhb] {
        padding: 0.5rem;
    }

    .section-navigation[b-vmpoxrplhb] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-next-section[b-vmpoxrplhb],
    .btn-prev-section[b-vmpoxrplhb] {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

/* Mobile compact (max-width: 600px) */
@media (max-width: 600px) {
    .objectifs-page[b-vmpoxrplhb] {
        padding: 0.75rem !important;
    }

    .header-objectifs[b-vmpoxrplhb] {
        padding: 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
    }

    .section-card[b-vmpoxrplhb] {
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
    }

    .section-body[b-vmpoxrplhb] {
        padding: 1rem !important;
    }

    .timeline-navigation[b-vmpoxrplhb] {
        padding: 1rem !important;
        border-radius: 12px !important;
        width: calc(100vw - 2rem) !important;
        max-width: none !important;
        box-sizing: border-box !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        transition: box-shadow 0.3s ease !important;
    }

    .timeline-container[b-vmpoxrplhb] {
        padding: 0.75rem 1rem !important;
        gap: 0.75rem !important;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

        .timeline-container[b-vmpoxrplhb]::-webkit-scrollbar {
            display: none;
        }

    .section-navigation[b-vmpoxrplhb] {
        align-items: center !important;
        justify-content: center !important;
        margin-top: 2.25rem;
        padding-top: 1rem;
    }

    .btn-next-section[b-vmpoxrplhb],
    .btn-prev-section[b-vmpoxrplhb] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
    }

    .values-table th[b-vmpoxrplhb],
    .objectives-table th[b-vmpoxrplhb],
    .engagement-table th[b-vmpoxrplhb] {
        font-size: 0.7rem !important;
        padding: 0.5rem 0.25rem !important;
    }

    .values-table td[b-vmpoxrplhb],
    .objectives-table td[b-vmpoxrplhb],
    .engagement-table td[b-vmpoxrplhb] {
        padding: 0.375rem !important;
    }

    .form-control-sm[b-vmpoxrplhb],
    .form-select-sm[b-vmpoxrplhb] {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.375rem !important;
    }

    .label-cell[b-vmpoxrplhb] {
        font-size: 0.75rem !important;
    }
}
/* _content/Spectrometre/Components/Account/Pages/Evaluations/Profil.razor.rz.scp.css */
/* Profile Page Styles */
.profile-page-wrap[b-7pjxpy0afl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header-section-profile[b-7pjxpy0afl] {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.page-title-profile[b-7pjxpy0afl] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

/* Timeline Navigation - Sticky */
.timeline-navigation[b-7pjxpy0afl] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border: none;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-container[b-7pjxpy0afl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.timeline-item[b-7pjxpy0afl] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

    .timeline-item.clickable[b-7pjxpy0afl] {
        cursor: pointer;
    }

        .timeline-item.clickable:hover[b-7pjxpy0afl] {
            transform: translateY(-2px);
        }

    .timeline-item:not(.clickable)[b-7pjxpy0afl] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .timeline-item.active .timeline-marker[b-7pjxpy0afl] {
        background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

    .timeline-item.completed .timeline-marker[b-7pjxpy0afl] {
        background: #10b981;
        color: white;
    }

    .timeline-item:not(.active):not(.completed) .timeline-marker[b-7pjxpy0afl] {
        background: #f1f5f9;
        color: #94a3b8;
        border: 2px solid #e2e8f0;
    }

.timeline-marker[b-7pjxpy0afl] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.timeline-number[b-7pjxpy0afl] {
    font-size: 1.125rem;
    font-weight: 700;
}

.timeline-label[b-7pjxpy0afl] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 100px;
}

.timeline-item.active .timeline-label[b-7pjxpy0afl] {
    color: var(--bs-primary);
    font-weight: 600;
}

.timeline-item.completed .timeline-label[b-7pjxpy0afl] {
    color: #10b981;
}

.timeline-connector[b-7pjxpy0afl] {
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-item.completed .timeline-connector[b-7pjxpy0afl] {
    background: #10b981;
}

.timeline-item:last-child .timeline-connector[b-7pjxpy0afl] {
    display: none;
}

/* Section Navigation Buttons */
.section-navigation[b-7pjxpy0afl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.btn-next-section[b-7pjxpy0afl],
.btn-prev-section[b-7pjxpy0afl] {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-next-section[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    margin-left: auto;
}

    .btn-next-section:hover[b-7pjxpy0afl] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

.btn-prev-section[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
}

    .btn-prev-section:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
        background: #f8fafc;
    }

.profile-section[b-7pjxpy0afl] {
    animation: fadeIn-b-7pjxpy0afl 0.3s ease;
}

@keyframes fadeIn-b-7pjxpy0afl {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card-profile[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.avatar-profile[b-7pjxpy0afl] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.profile-info-profile[b-7pjxpy0afl] {
    flex: 1;
}

.profile-name-profile[b-7pjxpy0afl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.profile-id-profile[b-7pjxpy0afl] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.progress-wrapper-profile[b-7pjxpy0afl] {
    flex-shrink: 0;
    width: 200px;
}

.progress-label-profile[b-7pjxpy0afl] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.progress-bar-clean-profile[b-7pjxpy0afl] {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill-profile[b-7pjxpy0afl] {
    height: 100%;
    background: linear-gradient(90deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-value-profile[b-7pjxpy0afl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 0.5rem;
}

.section-card-profile[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-header-profile[b-7pjxpy0afl] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.section-icon-profile[b-7pjxpy0afl] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.section-title-profile[b-7pjxpy0afl] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.form-label-profile[b-7pjxpy0afl] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.form-control-clean-profile[b-7pjxpy0afl],
.form-select-clean-profile[b-7pjxpy0afl] {
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .form-control-clean-profile:focus[b-7pjxpy0afl],
    .form-select-clean-profile:focus[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1);
        outline: none;
    }

.input-group-profile[b-7pjxpy0afl] {
    display: flex;
}

.input-group-text-profile[b-7pjxpy0afl] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    color: var(--muted-foreground);
    padding: 0.625rem 0.75rem;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
}

.input-group-profile .form-control-clean-profile[b-7pjxpy0afl] {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.table-container-profile[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.table-clean-profile[b-7pjxpy0afl] {
    margin: 0;
    width: 100%;
}

    .table-clean-profile thead[b-7pjxpy0afl] {
        background: #f8fafc;
    }

        .table-clean-profile thead th[b-7pjxpy0afl] {
            border: none;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 600;
            color: var(--muted-foreground);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0.75rem 1rem;
        }

    .table-clean-profile tbody td[b-7pjxpy0afl] {
        border: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 1rem;
        vertical-align: middle;
    }

    .table-clean-profile tbody tr:last-child td[b-7pjxpy0afl] {
        border-bottom: none;
    }

    .table-clean-profile tbody tr:hover[b-7pjxpy0afl] {
        background: #f8fafc;
    }

.row-number-profile[b-7pjxpy0afl] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-clean-profile[b-7pjxpy0afl] {
    background: var(--bs-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.action-card-profile[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    height: 100%;
}

    .action-card-profile:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.action-icon-profile[b-7pjxpy0afl] {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--bs-primary);
}

.action-title-profile[b-7pjxpy0afl] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.action-description-profile[b-7pjxpy0afl] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.btn-primary-clean-profile[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-primary-clean-profile:hover[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
        color: white;
    }

.btn-secondary-clean-profile[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-secondary-clean-profile:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

.btn-action-profile[b-7pjxpy0afl] {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.625rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

    .btn-action-profile:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        background: white;
        color: var(--bs-primary);
    }

.actions-bar-profile[b-7pjxpy0afl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Avatar Selection Styles */
.avatar-selection-section[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.avatar-selection-header[b-7pjxpy0afl] {
    margin-bottom: 2rem;
    text-align: center;
}

.avatar-selection-title[b-7pjxpy0afl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.avatar-selection-subtitle[b-7pjxpy0afl] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.avatar-options-grid[b-7pjxpy0afl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.avatar-option-card[b-7pjxpy0afl] {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
    overflow: hidden;
}

    .avatar-option-card:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .avatar-option-card.selected[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        background: rgba(52, 95, 109, 0.05);
        box-shadow: 0 4px 12px rgba(52, 95, 109, 0.15);
    }

.avatar-option-header[b-7pjxpy0afl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    position: relative;
}

.avatar-chevron[b-7pjxpy0afl] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

    .avatar-chevron.expanded[b-7pjxpy0afl] {
        transform: rotate(180deg);
        color: var(--bs-primary);
    }

.avatar-option-header.no-chevron .avatar-chevron[b-7pjxpy0afl] {
    display: none !important;
}

.avatar-preview[b-7pjxpy0afl] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-preview-img[b-7pjxpy0afl] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-emoji-large[b-7pjxpy0afl] {
    font-size: 2.5rem;
    line-height: 1;
}

.initials-avatar[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
}

.icon-avatar[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--gscv-teal) 0%, hsl(178, 45%, 45%) 100%);
    font-size: 2rem;
}

.upload-avatar[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--gscv-green) 0%, hsl(90, 42%, 55%) 100%);
    font-size: 2rem;
}

/* Panneau de choix d'avatars */
.avatar-choices-panel[b-7pjxpy0afl] {
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    padding: 0;
    opacity: 0;
    display: none;
}

    .avatar-choices-panel.expanded[b-7pjxpy0afl] {
        display: block;
        max-height: 500px;
        padding: 1rem;
        opacity: 1;
        overflow-y: auto;
    }

    .avatar-choices-panel.collapsed[b-7pjxpy0afl] {
        display: none;
        max-height: 0;
        padding: 0;
        opacity: 0;
    }

.no-chevron .avatar-chevron[b-7pjxpy0afl] {
    display: none !important;
}

.avatar-choices-grid[b-7pjxpy0afl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

    .avatar-choices-grid.emoji-grid[b-7pjxpy0afl] {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }

.avatar-choice[b-7pjxpy0afl] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
}

    .avatar-choice:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .avatar-choice.choice-selected[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        border-width: 3px;
        box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.2);
    }

    .avatar-choice img[b-7pjxpy0afl] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .avatar-choice.emoji-choice[b-7pjxpy0afl] {
        font-size: 2rem;
        background: #f8fafc;
    }

.avatar-emoji[b-7pjxpy0afl] {
    font-size: 2rem;
    line-height: 1;
}

.avatar-option-label[b-7pjxpy0afl] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: center;
}

.avatar-upload-section[b-7pjxpy0afl] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.file-input-hidden[b-7pjxpy0afl] {
    display: none !important;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.btn-upload-avatar[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-upload-avatar:hover[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

    .btn-upload-avatar:active[b-7pjxpy0afl] {
        transform: translateY(0);
    }

.uploaded-avatar-preview[b-7pjxpy0afl] {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

    .uploaded-avatar-preview img[b-7pjxpy0afl] {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--bs-primary);
    }

.btn-remove-avatar[b-7pjxpy0afl] {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

    .btn-remove-avatar:hover[b-7pjxpy0afl] {
        background: #dc2626;
        transform: scale(1.1);
    }

.avatar-preview-section[b-7pjxpy0afl] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.avatar-preview-label[b-7pjxpy0afl] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.avatar-large[b-7pjxpy0afl] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.initials-avatar-large[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

.icon-avatar-large[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--gscv-teal) 0%, hsl(178, 45%, 45%) 100%);
    color: white;
    font-size: 3.5rem;
}

.emoji-avatar-large[b-7pjxpy0afl] {
    background: #f8fafc;
    border: 3px solid var(--bs-primary);
}

.avatar-emoji-preview[b-7pjxpy0afl] {
    font-size: 4rem;
    line-height: 1;
}

.image-avatar-large[b-7pjxpy0afl] {
    object-fit: cover;
    border: 3px solid var(--bs-primary);
}


@media (max-width: 768px) {
    .profile-page-wrap[b-7pjxpy0afl] {
        padding: 1.25rem;
    }

    /* Headers */
    .header-section-profile[b-7pjxpy0afl] {
        padding: 1.25rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .page-title-profile[b-7pjxpy0afl] {
        font-size: 1.5rem;
    }
    /* Timeline Navigation */
    .timeline-navigation[b-7pjxpy0afl] {
        padding: 1rem !important;
        border-radius: 12px !important;
        /* Taille écran */
        width: calc(100vw - 2rem) !important;
        max-width: none !important;
        box-sizing: border-box !important;
        /* ⭐ STICKY */
        position: sticky !important;
        top: 0 !important; /* Colle en haut à 0px du scroll */
        z-index: 100 !important; /* Passe au-dessus du contenu */
        /* Centre */
        margin-left: auto !important;
        margin-right: auto !important;
        /* ⭐ BONUS: Backdrop pour effet iOS */
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Shadow apparaît au scroll */
        transition: box-shadow 0.3s ease !important;
    }

    .timeline-container[b-7pjxpy0afl] {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        padding: 0.25rem 0.75rem 0.75rem;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }

    .timeline-item[b-7pjxpy0afl] {
        flex: 0 0 auto;
        min-width: 110px;
        scroll-snap-align: center;
    }

    .timeline-connector[b-7pjxpy0afl] {
        display: none;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 40px;
        height: 40px;
    }

    .timeline-label[b-7pjxpy0afl] {
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Cards */
    .section-card-profile[b-7pjxpy0afl] {
        padding: 1.25rem;
    }
    /* Navigation */
    .section-navigation[b-7pjxpy0afl] {
        flex-direction: column;
        align-items: center;
    }

    .btn-next-section[b-7pjxpy0afl],
    .btn-prev-section[b-7pjxpy0afl] {
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }
    /* Profile Card */
    .profile-card-profile[b-7pjxpy0afl] {
        flex-direction: column;
        align-items: flex-start;
    }

    .progress-wrapper-profile[b-7pjxpy0afl] {
        width: 100%;
    }
    /* Tables */
    .table-container-profile[b-7pjxpy0afl] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-clean-profile[b-7pjxpy0afl] {
        min-width: 680px;
    }
    /* Section Headers */
    .section-header-profile[b-7pjxpy0afl] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-icon-profile[b-7pjxpy0afl] {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .section-title-profile[b-7pjxpy0afl] {
        font-size: 1.05rem;
    }
    /* Avatar Options */
    .avatar-options-grid[b-7pjxpy0afl] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: center;
        max-width: 420px;
        margin: 0 auto;
    }

    .avatar-option-card[b-7pjxpy0afl] {
        width: 100%;
    }

    .avatar-option-header[b-7pjxpy0afl] {
        justify-content: center;
        text-align: center;
    }

    .avatar-option-header[b-7pjxpy0afl] {
        padding: 0.85rem;
        gap: 0.5rem;
    }

    .avatar-option-label[b-7pjxpy0afl] {
        font-size: 0.85rem;
    }

    .avatar-preview[b-7pjxpy0afl] {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .avatar-large[b-7pjxpy0afl] {
        width: 100px;
        height: 100px;
    }

    .initials-avatar-large[b-7pjxpy0afl] {
        font-size: 2.5rem;
    }

    .icon-avatar-large[b-7pjxpy0afl] {
        font-size: 3rem;
    }

    .avatar-preview-section[b-7pjxpy0afl] {
        padding: 1rem;
    }

    /* Section 2: champs centrés (mobile) */
    .profile-section .row.g-3[b-7pjxpy0afl] {
        justify-content: center;
    }

        .profile-section .row.g-3 > [class*="col-"][b-7pjxpy0afl] {
            width: 100%;
            max-width: 520px;
            margin-left: 0;
            margin-right: auto;
        }

    /* S'assurer que les contrôles ne débordent jamais */
    .profile-section .form-control-clean-profile[b-7pjxpy0afl],
    .profile-section .form-select-clean-profile[b-7pjxpy0afl],
    .profile-section .input-group-profile[b-7pjxpy0afl] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .profile-section .input-group-profile[b-7pjxpy0afl] {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .profile-section .input-group-text-profile[b-7pjxpy0afl] {
        flex: 0 0 auto;
    }

    .profile-section .input-group-profile .form-control-clean-profile[b-7pjxpy0afl] {
        min-width: 0; /* évite overflow horizontal sur iOS */
    }
}

/* Responsive: Carrousel pour petits écrans */
@media (max-width: 768px) {
    .timeline-navigation[b-7pjxpy0afl] {
        padding: 0.75rem 0;
    }

    .timeline-container[b-7pjxpy0afl] {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1rem;
        gap: 1rem;
        /* Masquer la scrollbar tout en gardant la fonctionnalité */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

        .timeline-container[b-7pjxpy0afl]::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

    .timeline-item[b-7pjxpy0afl] {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.7rem;
        max-width: 80px;
    }

    .timeline-connector[b-7pjxpy0afl] {
        display: none; /* Masquer les connecteurs sur mobile */
    }
}

@media (max-width: 600px) {
    /* Container principal avec padding réduit */

    .profile-page-wrap[b-7pjxpy0afl] {
        padding: 0.75rem !important;
    }

    /* Section 2: garder le formulaire centré et entièrement visible */
    .profile-section .row.g-3[b-7pjxpy0afl] {
        margin-left: 0 !important;
        margin-right: auto !important;
        justify-content: center !important;
    }

        .profile-section .row.g-3 > [class*="col-"][b-7pjxpy0afl] {
            width: 100% !important;
            max-width: 400px !important;
            margin-left: 0 !important;
            margin-right: auto !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    /* Cards avec padding réduit */
    .section-card-profile[b-7pjxpy0afl],
    .avatar-selection-section[b-7pjxpy0afl] {
        padding: 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        max-width:100vw;
    }

    /* Centrer les boutons Précédent / Suivant */
    .section-navigation[b-7pjxpy0afl] {
        align-items: center !important;
        justify-content: center !important;
    }


    .btn-next-section[b-7pjxpy0afl],
    .btn-prev-section[b-7pjxpy0afl] {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Section 1: forcer l’empilement des cartes avatar */
    .avatar-options-grid[b-7pjxpy0afl] {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        max-width: 380px !important;
        margin: 0 !important;
    }

    .avatar-option-card[b-7pjxpy0afl] {
        width: 100% !important;
    }

    /* Centrer l’aperçu de l’avatar sur l’écran */
    .avatar-preview-section[b-7pjxpy0afl] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .avatar-preview-label[b-7pjxpy0afl] {
        width: 100%;
        text-align: center;
    }

    .avatar-large[b-7pjxpy0afl] {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Section 6 (Rendez-vous) : layout mobile en cartes */
    #section-6 .section-header-profile[b-7pjxpy0afl] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    #section-6 .btn-rdv-new[b-7pjxpy0afl] {
        width: 100%;
        justify-content: center;
    }

    #section-6 .table-container-profile[b-7pjxpy0afl] {
        background: transparent;
        border: none;
        overflow: visible !important;
    }

    #section-6 .table-clean-profile[b-7pjxpy0afl] {
        min-width: 0 !important;
        width: 100%;
    }

        #section-6 .table-clean-profile thead[b-7pjxpy0afl] {
            display: none;
        }

        #section-6 .table-clean-profile tbody[b-7pjxpy0afl],
        #section-6 .table-clean-profile tr[b-7pjxpy0afl],
        #section-6 .table-clean-profile td[b-7pjxpy0afl] {
            display: block;
            width: 100%;
        }

            #section-6 .table-clean-profile tbody tr[b-7pjxpy0afl] {
                background: white;
                border: 1px solid #e2e8f0;
                border-radius: 14px;
                padding: 0.75rem 0.75rem;
                margin-bottom: 0.75rem;
                box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            }

            #section-6 .table-clean-profile tbody td[b-7pjxpy0afl] {
                border: none !important;
                padding: 0.5rem 0 !important;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.75rem;
                text-align: left;
                white-space: normal;
            }

                #section-6 .table-clean-profile tbody td[b-7pjxpy0afl]::before {
                    content: attr(data-label);
                    font-size: 0.75rem;
                    font-weight: 700;
                    color: var(--muted-foreground);
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    flex: 0 0 auto;
                    min-width: 110px;
                }

    #section-6 .row-number-profile[b-7pjxpy0afl] {
        margin: 0;
    }

    /* Empty state */
    #section-6 .table-clean-profile tbody tr.rdv-empty-row[b-7pjxpy0afl] {
        text-align: center;
        padding: 1rem;
    }

        #section-6 .table-clean-profile tbody tr.rdv-empty-row td[b-7pjxpy0afl] {
            display: block;
            padding: 0 !important;
            text-align: center;
        }

            #section-6 .table-clean-profile tbody tr.rdv-empty-row td[b-7pjxpy0afl]::before {
                content: "";
                display: none;
            }
    /* Timeline sticky avec padding réduit */
    .timeline-navigation[b-7pjxpy0afl] {
        position: sticky;
        top: 0;
        z-index: 90;
        background: white;
        border-bottom: 2px solid #e2e8f0;
        padding: 0.5rem 0 !important;
        margin-bottom: 0.75rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        overflow: hidden; /* évite un scroll horizontal global sur mobile */
    }
    /* Timeline scrollable horizontalement */
    .timeline-container[b-7pjxpy0afl] {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 0.75rem !important;
        padding: 0.75rem 1rem !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }

        .timeline-container[b-7pjxpy0afl]::-webkit-scrollbar {
            display: none;
        }
    /* Carousel: afficher 3 points visibles */
    .timeline-item[b-7pjxpy0afl] {
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        width: calc((100% - (0.75rem * 2)) / 3) !important;
        min-width: calc((100% - (0.75rem * 2)) / 3) !important;
        max-width: calc((100% - (0.75rem * 2)) / 3) !important;
        text-align: center;
        padding: 0.75rem 0.5rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
        scroll-snap-align: center;
    }

        .timeline-item:active[b-7pjxpy0afl] {
            background: rgba(20, 184, 166, 0.05);
        }
    /* Marker TOUCH-FRIENDLY (44x44px minimum Apple/Google) */
    .timeline-marker[b-7pjxpy0afl] {
        width: 44px !important;
        height: 44px !important;
        margin: 0 auto 0.5rem !important;
        font-size: 1rem !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
    }
    /* Label LISIBLE - 2 lignes maximum */
    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        max-width: 110px !important;
        white-space: normal !important;
        overflow: hidden !important;
        height: 2.6em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        margin: 0 auto;
    }
    /* Connectors cachés sur mobile */
    .timeline-connector[b-7pjxpy0afl] {
        display: none !important;
    }
    /* Headers compacts */
    .header-section-profile[b-7pjxpy0afl] {
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .page-title-profile[b-7pjxpy0afl] {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        text-align: center;
        padding: 0;
        margin: 0;
        max-width: 28ch;
        word-break: break-word;
    }

    .section-header-profile[b-7pjxpy0afl] {
        flex-direction: row !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .section-icon-profile[b-7pjxpy0afl] {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0;
    }

    .section-title-profile[b-7pjxpy0afl] {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .section-subtitle-profile[b-7pjxpy0afl] {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    /* Gradient pour indiquer qu'on peut scroller la timeline */
    .timeline-navigation[b-7pjxpy0afl]::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 28px;
        background: linear-gradient(to left, white 30%, transparent);
        pointer-events: none;
        z-index: 2;
    }

    .timeline-navigation[b-7pjxpy0afl]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 28px;
        background: linear-gradient(to right, white 30%, transparent);
        pointer-events: none;
        z-index: 2;
    }
    /* Support des zones sûres pour iPhone */
    .timeline-navigation[b-7pjxpy0afl] {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .section-card-profile[b-7pjxpy0afl],
    .avatar-selection-section[b-7pjxpy0afl] {
        margin-left: max(0.5rem, env(safe-area-inset-left));
        margin-right: max(0.5rem, env(safe-area-inset-right));
        max-width: 100vw;
    }

    .modal-overlay-upload[b-7pjxpy0afl],
    .modal-overlay-avatar[b-7pjxpy0afl] {
        padding-bottom: env(safe-area-inset-bottom);
    }
    /* Accessibilité */
    .timeline-item:focus-visible[b-7pjxpy0afl],
    button:focus-visible[b-7pjxpy0afl],
    .form-control-profile:focus-visible[b-7pjxpy0afl] {
        outline: 3px solid #14b8a6 !important;
        outline-offset: 2px !important;
    }

    .timeline-item:active[b-7pjxpy0afl],
    button:active[b-7pjxpy0afl] {
        transform: scale(0.97);
    }
    /* Réduire les animations pour perfs */
    *[b-7pjxpy0afl] {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }

    .btn-next-section[b-7pjxpy0afl],
    .btn-prev-section[b-7pjxpy0afl] {
        width: 100%;
        justify-content: center;
        max-width: 400px;
    }
    /* Hover désactivé sur touch devices */
    @media (hover: none) {
        .avatar-option-card:hover[b-7pjxpy0afl], .timeline-item:hover[b-7pjxpy0afl], button:hover[b-7pjxpy0afl] {
            transform: none !important;
        }
    }
}

@media (max-width: 480px) {
    /* Avatar en 1 colonne */
    .avatar-options-grid[b-7pjxpy0afl] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .avatar-selection-section[b-7pjxpy0afl] {
        padding: 1.25rem;
    }
    /* Modal plein écran */
    .modal-overlay-upload[b-7pjxpy0afl],
    .modal-overlay-avatar[b-7pjxpy0afl] {
        padding: 0 !important;
        align-items: flex-end !important;
    }

    .modal-content-upload[b-7pjxpy0afl],
    .modal-content-avatar[b-7pjxpy0afl] {
        max-width: 100% !important;
        max-height: 95vh !important;
        border-radius: 16px 16px 0 0 !important;
        margin: 0 !important;
    }

    .modal-header-upload[b-7pjxpy0afl],
    .modal-header-avatar[b-7pjxpy0afl] {
        padding: 1.25rem !important;
    }

    .modal-title-upload[b-7pjxpy0afl],
    .modal-title-avatar[b-7pjxpy0afl] {
        font-size: 1.1rem !important;
    }

    .modal-body-upload[b-7pjxpy0afl],
    .modal-body-avatar[b-7pjxpy0afl] {
        padding: 1.25rem !important;
    }

    .modal-footer-upload[b-7pjxpy0afl],
    .modal-footer-avatar[b-7pjxpy0afl] {
        padding: 1rem 1.25rem !important;
        flex-direction: column-reverse !important;
    }

    .btn-secondary-modal[b-7pjxpy0afl],
    .btn-primary-modal[b-7pjxpy0afl] {
        width: 100% !important;
        justify-content: center !important;
        min-height: 44px !important;
    }
    /* Upload zone compact */
    .drop-zone[b-7pjxpy0afl],
    .upload-zone[b-7pjxpy0afl] {
        padding: 2rem 1rem !important;
        min-height: 180px !important;
    }

    .drop-icon[b-7pjxpy0afl] {
        font-size: 2.5rem !important;
    }

    .drop-zone-content h4[b-7pjxpy0afl] {
        font-size: 1rem !important;
    }

    .drop-zone-content p[b-7pjxpy0afl] {
        font-size: 0.85rem !important;
    }

    .btn-upload[b-7pjxpy0afl] {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .uploaded-preview-modal img[b-7pjxpy0afl] {
        width: 150px !important;
        height: 150px !important;
    }

    .btn-remove-preview[b-7pjxpy0afl] {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        right: calc(50% - 83px) !important;
    }
    /* Cards et sections */
    .section-card-profile[b-7pjxpy0afl] {
        padding: 1rem;
        border-radius: 14px;
    }
    /* Tables */
    .table-clean-profile[b-7pjxpy0afl] {
        min-width: 620px;
    }
}

@media (max-width: 414px) {
    /* Headers */
    .header-section-profile[b-7pjxpy0afl] {
        padding: 0.75rem 0;
    }

    .page-title-profile[b-7pjxpy0afl] {
        font-size: 1.35rem;
    }
    /* Timeline */
    .timeline-navigation[b-7pjxpy0afl] {
        padding: 0.5rem 0;
    }

    .timeline-container[b-7pjxpy0afl] {
        padding: 0 0.75rem 0.5rem;
        gap: 0.75rem;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 34px;
        height: 34px;
    }

    .timeline-number[b-7pjxpy0afl] {
        font-size: 0.95rem;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.68rem;
        max-width: 100px;
    }
    /* Avatar Section */
    .avatar-selection-section[b-7pjxpy0afl] {
        padding: 1rem;
        border-radius: 14px;
    }

    .avatar-selection-title[b-7pjxpy0afl] {
        font-size: 1.25rem;
    }

    .avatar-selection-subtitle[b-7pjxpy0afl] {
        font-size: 0.82rem;
    }
    /* Avatar Grid - 1 colonne */
    .avatar-options-grid[b-7pjxpy0afl] {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .avatar-option-card[b-7pjxpy0afl] {
        border-radius: 12px !important;
    }

    .avatar-option-header[b-7pjxpy0afl] {
        padding: 0.875rem !important;
        gap: 0.75rem !important;
    }
    /* Avatar Preview */
    .avatar-preview[b-7pjxpy0afl] {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }

    .avatar-emoji-large[b-7pjxpy0afl] {
        font-size: 2rem !important;
    }

    .avatar-option-label[b-7pjxpy0afl] {
        font-size: 0.9rem !important;
        font-weight: 600;
    }
    /* Avatar Large Preview */
    .avatar-preview-section[b-7pjxpy0afl] {
        margin-top: 1.25rem;
        padding: 1rem !important;
    }

    .avatar-large[b-7pjxpy0afl] {
        width: 100px !important;
        height: 100px !important;
    }

    .initials-avatar-large[b-7pjxpy0afl] {
        font-size: 2.5rem !important;
    }

    .icon-avatar-large[b-7pjxpy0afl] {
        font-size: 2.8rem !important;
    }

    .emoji-avatar-large[b-7pjxpy0afl] {
        font-size: 3.5rem !important;
    }

    .avatar-emoji-preview[b-7pjxpy0afl] {
        font-size: 3rem;
    }
    /* Avatar Choices */
    .avatar-choices-grid[b-7pjxpy0afl] {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
        padding: 0.75rem 0 !important;
    }

    .avatar-choice[b-7pjxpy0afl] {
        width: 48px !important;
        height: 48px !important;
    }

    .emoji-choice[b-7pjxpy0afl] {
        font-size: 1.5rem !important;
    }
    /* Forms - Colonne unique */
    .form-row-profile[b-7pjxpy0afl] {
        grid-template-columns: 1fr !important;
        gap: 0.875rem !important;
    }

    .form-group-profile[b-7pjxpy0afl] {
        margin-bottom: 0 !important;
    }

        .form-group-profile label[b-7pjxpy0afl] {
            font-size: 0.875rem !important;
            margin-bottom: 0.4rem !important;
        }

    .form-control-profile[b-7pjxpy0afl],
    .form-select-profile[b-7pjxpy0afl] {
        padding: 0.75rem !important;
        font-size: 0.95rem !important;
        min-height: 44px !important;
    }

    textarea.form-control-profile[b-7pjxpy0afl] {
        min-height: 100px !important;
    }
    /* Buttons Touch-Friendly */
    .btn-next-section[b-7pjxpy0afl],
    .btn-prev-section[b-7pjxpy0afl],
    .btn-save-profile[b-7pjxpy0afl] {
        min-height: 44px !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    /* Navigation Full Width */
    .section-navigation[b-7pjxpy0afl] {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
        margin-top: 1.5rem !important;
    }

        .section-navigation .btn-prev-section[b-7pjxpy0afl],
        .section-navigation .btn-next-section[b-7pjxpy0afl] {
            width: 100% !important;
            justify-content: center !important;
            /* Override desktop rule `.btn-next-section { margin-left: auto; }` */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    /* Cards */
    .section-card-profile[b-7pjxpy0afl] {
        padding: 0.95rem;
    }
    /* Tables */
    .table-container-profile[b-7pjxpy0afl] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem !important;
        padding: 0 1rem !important;
    }

    .table-clean-profile[b-7pjxpy0afl] {
        min-width: 600px !important;
        font-size: 0.85rem !important;
    }

        .table-clean-profile th[b-7pjxpy0afl],
        .table-clean-profile td[b-7pjxpy0afl] {
            padding: 0.625rem !important;
        }
    /* Progress */
    .progress-wrapper-profile[b-7pjxpy0afl] {
        height: 6px !important;
    }

    .progress-text-profile[b-7pjxpy0afl] {
        font-size: 0.8rem !important;
    }
    /* Text Sizes */
    body[b-7pjxpy0afl] {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    h1[b-7pjxpy0afl] {
        font-size: 1.5rem !important;
    }

    h2[b-7pjxpy0afl] {
        font-size: 1.25rem !important;
    }

    h3[b-7pjxpy0afl] {
        font-size: 1.1rem !important;
    }

    p[b-7pjxpy0afl], span[b-7pjxpy0afl], label[b-7pjxpy0afl], input[b-7pjxpy0afl], select[b-7pjxpy0afl], textarea[b-7pjxpy0afl] {
        font-size: 0.9rem !important;
    }

    small[b-7pjxpy0afl] {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 375px) {
    /* Container ultra-compact */
    .profile-container[b-7pjxpy0afl] {
        padding: 0.25rem !important;
    }

    .section-card-profile[b-7pjxpy0afl],
    .avatar-selection-section[b-7pjxpy0afl] {
        padding: 0.875rem !important;
        margin-bottom: 0.5rem !important;
    }
    /* Timeline encore plus compact */
    .timeline-item[b-7pjxpy0afl] {
        min-width: 110px !important;
        max-width: 110px !important;
        width: 110px !important;
        padding: 0.5rem 0.25rem !important;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.4rem !important;
        font-size: 0.9rem !important;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.7rem !important;
        max-width: 100px !important;
    }
    /* Titles plus petits */
    .page-title-profile[b-7pjxpy0afl] {
        font-size: 1.15rem !important;
    }

    .section-title-profile[b-7pjxpy0afl] {
        font-size: 0.95rem !important;
    }

    .section-subtitle-profile[b-7pjxpy0afl] {
        font-size: 0.75rem !important;
    }
    /* Avatar compacts */
    .avatar-preview[b-7pjxpy0afl] {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.1rem !important;
    }

    .avatar-option-label[b-7pjxpy0afl] {
        font-size: 0.85rem !important;
    }

    .avatar-large[b-7pjxpy0afl] {
        width: 90px !important;
        height: 90px !important;
    }
    /* Form ultra-compact */
    .form-control-profile[b-7pjxpy0afl],
    .form-select-profile[b-7pjxpy0afl] {
        padding: 0.625rem !important;
        font-size: 0.9rem !important;
    }
    /* Table encore plus responsive */
    .table-clean-profile[b-7pjxpy0afl] {
        min-width: 550px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    .timeline-item[b-7pjxpy0afl] {
        min-width: 95px;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.7rem;
    }
}

@media (max-width: 896px) and (orientation: landscape) {
    /* Timeline plus compact en paysage */
    .timeline-navigation[b-7pjxpy0afl] {
        padding: 0.4rem 0 !important;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 32px !important;
        height: 32px !important;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.7rem !important;
    }
    /* Modal adapté en landscape */
    .modal-content-upload[b-7pjxpy0afl],
    .modal-content-avatar[b-7pjxpy0afl] {
        max-height: 85vh !important;
    }

    .drop-zone[b-7pjxpy0afl],
    .upload-zone[b-7pjxpy0afl] {
        min-height: 140px !important;
        padding: 1.5rem 1rem !important;
    }
}

@media print {
    .timeline-navigation[b-7pjxpy0afl],
    .section-navigation[b-7pjxpy0afl],
    button[b-7pjxpy0afl] {
        display: none !important;
    }

    .section-card-profile[b-7pjxpy0afl] {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Modal Upload Avatar */
.modal-overlay-avatar[b-7pjxpy0afl],
.modal-overlay-upload[b-7pjxpy0afl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
    animation: fadeIn-b-7pjxpy0afl 0.2s ease;
}

.modal-content-avatar[b-7pjxpy0afl],
.modal-content-upload[b-7pjxpy0afl] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-7pjxpy0afl 0.3s ease;
}

@keyframes fadeIn-b-7pjxpy0afl {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-7pjxpy0afl {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-avatar[b-7pjxpy0afl],
.modal-header-upload[b-7pjxpy0afl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title-avatar[b-7pjxpy0afl],
.modal-title-upload[b-7pjxpy0afl] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.btn-close-modal[b-7pjxpy0afl] {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .btn-close-modal:hover[b-7pjxpy0afl] {
        background: #f1f5f9;
        color: var(--foreground);
    }

.modal-body-avatar[b-7pjxpy0afl],
.modal-body-upload[b-7pjxpy0afl] {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.modal-footer-avatar[b-7pjxpy0afl],
.modal-footer-upload[b-7pjxpy0afl] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn-secondary-modal[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-secondary-modal:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

.btn-primary-modal[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-primary-modal:hover:not(:disabled)[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

    .btn-primary-modal:disabled[b-7pjxpy0afl] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.uploaded-preview-modal[b-7pjxpy0afl] {
    margin-top: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

    .uploaded-preview-modal img[b-7pjxpy0afl] {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--bs-primary);
    }

.btn-remove-preview[b-7pjxpy0afl] {
    position: absolute;
    top: -8px;
    right: calc(50% - 108px);
    width: 36px;
    height: 36px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

    .btn-remove-preview:hover[b-7pjxpy0afl] {
        background: #dc2626;
        transform: scale(1.1);
    }

.no-chevron .avatar-chevron[b-7pjxpy0afl] {
    display: none;
}

.drop-zone[b-7pjxpy0afl],
.upload-zone[b-7pjxpy0afl] {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .upload-zone:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        background: rgba(52, 95, 109, 0.05);
    }

    .upload-zone.dragging[b-7pjxpy0afl] {
        border-color: #14b8a6;
        background: rgba(20, 184, 166, 0.05);
        transform: scale(1.02);
    }

.drop-zone-content[b-7pjxpy0afl],
.upload-zone-content[b-7pjxpy0afl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.drop-icon[b-7pjxpy0afl] {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.drop-zone-content h4[b-7pjxpy0afl] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0.5rem 0;
}

.drop-zone-content p[b-7pjxpy0afl] {
    color: var(--muted-foreground);
    margin: 0.25rem 0;
}

.btn-upload[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

    .btn-upload:hover[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

.preview-container[b-7pjxpy0afl] {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.preview-image[b-7pjxpy0afl] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--bs-primary);
}

.btn-cancel[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-cancel:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

.btn-confirm[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-confirm:hover:not(:disabled)[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

    .btn-confirm:disabled[b-7pjxpy0afl] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.upload-icon[b-7pjxpy0afl] {
    font-size: 3rem;
    color: var(--bs-primary);
}

.upload-text[b-7pjxpy0afl] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.upload-subtext[b-7pjxpy0afl] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.upload-hint[b-7pjxpy0afl] {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
    margin-top: 0.5rem;
}

.upload-preview[b-7pjxpy0afl] {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.upload-preview-img[b-7pjxpy0afl] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--bs-primary);
}

.btn-remove-preview[b-7pjxpy0afl] {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

    .btn-remove-preview:hover[b-7pjxpy0afl] {
        background: #dc2626;
        transform: scale(1.1);
    }

.modal-footer-upload[b-7pjxpy0afl] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn-secondary-modal[b-7pjxpy0afl] {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-secondary-modal:hover[b-7pjxpy0afl] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

.btn-primary-modal[b-7pjxpy0afl] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

    .btn-primary-modal:hover:not(:disabled)[b-7pjxpy0afl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
    }

    .btn-primary-modal:disabled[b-7pjxpy0afl] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* ========================================
   RESPONSIVE: CARROUSEL MOBILE
   ======================================== */
@media (max-width: 768px) {
    .timeline-navigation[b-7pjxpy0afl] {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }

    .timeline-container[b-7pjxpy0afl] {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1rem;
        gap: 1.5rem;
        /* Masquer la scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

        .timeline-container[b-7pjxpy0afl]::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

    .timeline-item[b-7pjxpy0afl] {
        flex: 0 0 auto;
        min-width: 80px;
        max-width: 80px;
    }

    .timeline-marker[b-7pjxpy0afl] {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .timeline-number[b-7pjxpy0afl] {
        font-size: 1rem;
    }

    .timeline-label[b-7pjxpy0afl] {
        font-size: 0.7rem;
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .timeline-connector[b-7pjxpy0afl] {
        display: none;
    }
}
/* _content/Spectrometre/Components/Account/Pages/Evaluations/PsychoSocial.razor.rz.scp.css */
/* Page wrapper */
.psycho-social-page[b-z6k9xxh607] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header-psycho-social[b-z6k9xxh607] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    margin-bottom: 1.25rem;
}

.header-title-row[b-z6k9xxh607] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.header-icon[b-z6k9xxh607] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-title[b-z6k9xxh607] {
    margin: 0;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.15;
}

.header-subtitle[b-z6k9xxh607] {
    margin-top: 0.25rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.header-meta[b-z6k9xxh607] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.legend[b-z6k9xxh607] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.legend-item[b-z6k9xxh607] {
    font-size: 0.875rem;
    font-weight: 500;
}

.date-box[b-z6k9xxh607] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.date-label[b-z6k9xxh607] {
    font-size: 0.875rem;
    opacity: 0.9;
}

.date-value[b-z6k9xxh607] {
    font-weight: 600;
}

/* Timeline Navigation */
.timeline-navigation[b-z6k9xxh607] {
    position: sticky;
    top: 0;
    z-index: 90;
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-container[b-z6k9xxh607] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.timeline-item[b-z6k9xxh607] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .timeline-item:hover[b-z6k9xxh607] {
        transform: translateY(-2px);
    }

.timeline-marker[b-z6k9xxh607] {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
}

.timeline-item.active .timeline-marker[b-z6k9xxh607] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.25);
}

.timeline-item.completed .timeline-marker[b-z6k9xxh607] {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.timeline-number[b-z6k9xxh607] {
    font-size: 1.05rem;
}

.timeline-label[b-z6k9xxh607] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 120px;
}

.timeline-item.active .timeline-label[b-z6k9xxh607] {
    color: var(--bs-primary);
}

.timeline-item.completed .timeline-label[b-z6k9xxh607] {
    color: #10b981;
}

.timeline-connector[b-z6k9xxh607] {
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-item.completed .timeline-connector[b-z6k9xxh607] {
    background: #10b981;
}

.timeline-item:last-child .timeline-connector[b-z6k9xxh607] {
    display: none;
}

/* Sections */
.psycho-section[b-z6k9xxh607] {
    animation: fadeIn-b-z6k9xxh607 0.25s ease;
}

@keyframes fadeIn-b-z6k9xxh607 {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instruction-card[b-z6k9xxh607] {
    background: linear-gradient(135deg, rgba(52, 95, 109, 0.10) 0%, rgba(234, 119, 61, 0.10) 100%);
    border: 2px solid rgba(234, 119, 61, 0.35);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.instruction-title[b-z6k9xxh607] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--bs-primary);
}

.instruction-text[b-z6k9xxh607] {
    margin: 0;
    color: rgba(15, 23, 42, 0.85);
}

.pill[b-z6k9xxh607] {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    margin-left: 0.25rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.section-card[b-z6k9xxh607] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-header[b-z6k9xxh607] {
    padding: 1.1rem 1.25rem;
    color: white;
}

.section-header-row[b-z6k9xxh607] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .section-header-row h2[b-z6k9xxh607] {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
    }

.gradient-a[b-z6k9xxh607] {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
}

.gradient-b[b-z6k9xxh607] {
    background: linear-gradient(90deg, var(--gscv-teal) 0%, var(--bs-primary) 100%);
}

.section-body[b-z6k9xxh607] {
    padding: 1.25rem;
}

.subsection[b-z6k9xxh607] {
    margin-bottom: 1rem;
}

.subsection-title[b-z6k9xxh607] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--foreground);
}

.badge-section[b-z6k9xxh607] {
    width: 42px;
    height: 28px;
    border-radius: 10px;
    background: rgba(52, 95, 109, 0.10);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Items Container */
.items-container[b-z6k9xxh607] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.item-card[b-z6k9xxh607] {
    background: linear-gradient(135deg, rgba(248, 250, 251, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid #eef2f5;
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

    .item-card:hover[b-z6k9xxh607] {
        border-color: #dce4eb;
        background: white;
        box-shadow: 0 4px 12px rgba(91, 124, 153, 0.06);
        transform: translateY(-2px);
    }

.item-label[b-z6k9xxh607] {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.875rem;
}

/* Selectors Row */
.selectors-row[b-z6k9xxh607] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
}

.selector-group[b-z6k9xxh607] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.selector-label[b-z6k9xxh607] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.selector-label.actuelle[b-z6k9xxh607] {
    color: var(--bs-primary);
}

.selector-label.actuelle[b-z6k9xxh607]::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bs-primary);
    border-radius: 50%;
}

.selector-label.souhaitee[b-z6k9xxh607] {
    color: var(--gscv-orange);
}

.selector-label.souhaitee[b-z6k9xxh607]::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gscv-orange);
    border-radius: 50%;
}

.form-select-clean[b-z6k9xxh607] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: white;
    border: 2px solid #dce4eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .form-select-clean:hover[b-z6k9xxh607] {
        border-color: var(--bs-primary);
    }

    .form-select-clean:focus[b-z6k9xxh607] {
        outline: none;
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 4px rgba(52, 95, 109, 0.1);
    }

.selector-divider[b-z6k9xxh607] {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent 0%, #dce4eb 20%, #dce4eb 80%, transparent 100%);
    border-radius: 1px;
}

/* Special Layout for B.1 */
.special-layout[b-z6k9xxh607] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.special-intro[b-z6k9xxh607] {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.sub-section-header[b-z6k9xxh607] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--muted-foreground);
}

/* Navigation buttons */
.section-navigation[b-z6k9xxh607] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.btn-next-section[b-z6k9xxh607],
.btn-prev-section[b-z6k9xxh607] {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next-section[b-z6k9xxh607] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    margin-left: auto;
}

    .btn-next-section:hover[b-z6k9xxh607] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(234, 119, 61, 0.35);
    }

.btn-prev-section[b-z6k9xxh607] {
    background: white;
    border: 2px solid #dce4eb;
    color: var(--foreground);
}

    .btn-prev-section:hover[b-z6k9xxh607] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

/* Responsive */
@media (max-width: 768px) {
    .psycho-social-page[b-z6k9xxh607] {
        padding: 1rem;
    }

    .header-psycho-social[b-z6k9xxh607] {
        padding: 1rem;
    }

    .header-title[b-z6k9xxh607] {
        font-size: 1.35rem;
    }

    .header-meta[b-z6k9xxh607] {
        flex-direction: column;
        align-items: flex-start;
    }

    .legend[b-z6k9xxh607] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-navigation[b-z6k9xxh607] {
        padding: 0.75rem 0.25rem;
    }

    .timeline-container[b-z6k9xxh607] {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.25rem 0.75rem 0.75rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }

    .timeline-item[b-z6k9xxh607] {
        flex: 0 0 auto;
        min-width: 110px;
        scroll-snap-align: center;
    }

    .timeline-connector[b-z6k9xxh607] {
        display: none;
    }

    .section-body[b-z6k9xxh607] {
        padding: 1rem;
    }

    .selectors-row[b-z6k9xxh607] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .selector-divider[b-z6k9xxh607] {
        display: none;
    }

    .special-layout[b-z6k9xxh607] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-navigation[b-z6k9xxh607] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-next-section[b-z6k9xxh607],
    .btn-prev-section[b-z6k9xxh607] {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

/* Mobile compact (max-width: 600px) */
@media (max-width: 600px) {
    .psycho-social-page[b-z6k9xxh607] {
        padding: 0.75rem !important;
    }

    .header-psycho-social[b-z6k9xxh607] {
        padding: 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        max-width: 100vw;
    }

    .section-card[b-z6k9xxh607],
    .instruction-card[b-z6k9xxh607] {
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        max-width: 100vw;
    }

    .section-body[b-z6k9xxh607] {
        padding: 1rem !important;
    }

    .timeline-navigation[b-z6k9xxh607] {
        padding: 1rem !important;
        border-radius: 12px !important;
        width: calc(100vw - 2rem) !important;
        max-width: none !important;
        box-sizing: border-box !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        transition: box-shadow 0.3s ease !important;
    }

    .timeline-container[b-z6k9xxh607] {
        padding: 0.75rem 1rem !important;
        gap: 0.75rem !important;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

        .timeline-container[b-z6k9xxh607]::-webkit-scrollbar {
            display: none;
        }

    .section-navigation[b-z6k9xxh607] {
        align-items: center !important;
        justify-content: center !important;
        margin-top: 2.25rem;
        padding-top: 1rem;
    }

    .btn-next-section[b-z6k9xxh607],
    .btn-prev-section[b-z6k9xxh607] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
    }

    .item-card[b-z6k9xxh607] {
        padding: 1rem !important;
    }
}
/* _content/Spectrometre/Components/Account/Pages/Evaluations/PsychoSocialPreliminaire.razor.rz.scp.css */
/* Wrapper */
.psycho-page[b-lpszxcgt23] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.psycho-header[b-lpszxcgt23] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    margin-bottom: 1rem;
}

.psycho-header-row[b-lpszxcgt23] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.psycho-header-icon[b-lpszxcgt23] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.1rem;
}

.psycho-title[b-lpszxcgt23] {
    margin: 0;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.15;
}

.psycho-subtitle[b-lpszxcgt23] {
    margin-top: 0.25rem;
    opacity: 0.92;
    font-size: 0.95rem;
    font-style: italic;
}

.psycho-instruction[b-lpszxcgt23] {
    margin-top: 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.psycho-progress[b-lpszxcgt23] {
    margin-top: 1rem;
}

.psycho-progress-bar[b-lpszxcgt23] {
    height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    overflow: hidden;
}

.psycho-progress-fill[b-lpszxcgt23] {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.65) 100%);
    border-radius: 999px;
    transition: width 0.35s ease;
}

.psycho-progress-text[b-lpszxcgt23] {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.92;
    font-weight: 600;
}

/* Timeline (repris du style app) */
.timeline-navigation[b-lpszxcgt23] {
    position: sticky;
    top: 0;
    z-index: 90;
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-container[b-lpszxcgt23] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.timeline-item[b-lpszxcgt23] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.timeline-item:hover[b-lpszxcgt23] {
    transform: translateY(-2px);
}

.timeline-marker[b-lpszxcgt23] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.timeline-item.active .timeline-marker[b-lpszxcgt23] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.25);
}

.timeline-item.completed .timeline-marker[b-lpszxcgt23] {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.timeline-number[b-lpszxcgt23] {
    font-size: 1.05rem;
}

.timeline-label[b-lpszxcgt23] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 140px;
}

.timeline-item.active .timeline-label[b-lpszxcgt23] {
    color: var(--bs-primary);
}

.timeline-item.completed .timeline-label[b-lpszxcgt23] {
    color: #10b981;
}

.timeline-connector[b-lpszxcgt23] {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-item.completed .timeline-connector[b-lpszxcgt23] {
    background: #10b981;
}

.timeline-item:last-child .timeline-connector[b-lpszxcgt23] {
    display: none;
}

/* Section card */
.psycho-section[b-lpszxcgt23] {
    animation: fadeIn-b-lpszxcgt23 0.25s ease;
}

@keyframes fadeIn-b-lpszxcgt23 {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-card[b-lpszxcgt23] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.section-card-header[b-lpszxcgt23] {
    background: linear-gradient(90deg, rgba(52, 95, 109, 0.06) 0%, rgba(234, 119, 61, 0.05) 100%);
    border-bottom: 1px solid #eef2f5;
    padding: 1.25rem 1.25rem;
}

.section-card-header-left[b-lpszxcgt23] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.section-badge[b-lpszxcgt23] {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(52, 95, 109, 0.18);
    flex: 0 0 auto;
}

.section-card-title[b-lpszxcgt23] {
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.section-card-count[b-lpszxcgt23] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted-foreground);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}

.section-card-body[b-lpszxcgt23] {
    padding: 1.25rem;
}

/* Items */
.item-card[b-lpszxcgt23] {
    border: 1px solid #eef2f5;
    border-radius: 14px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(248, 250, 251, 0.55) 0%, rgba(255, 255, 255, 0.95) 100%);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    margin-bottom: 0.9rem;
}

.item-card:hover[b-lpszxcgt23] {
    border-color: #dce4eb;
    background: white;
    box-shadow: 0 4px 12px rgba(52, 95, 109, 0.06);
    transform: translateY(-1px);
}

.item-label[b-lpszxcgt23] {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.item-grid[b-lpszxcgt23] {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: 1rem;
    align-items: end;
}

.item-col[b-lpszxcgt23] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.item-divider[b-lpszxcgt23] {
    width: 2px;
    height: 44px;
    background: linear-gradient(to bottom, transparent 0%, #dce4eb 20%, #dce4eb 80%, transparent 100%);
    border-radius: 1px;
}

.item-field-label[b-lpszxcgt23] {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.item-field-label.current[b-lpszxcgt23] {
    color: var(--bs-primary);
}

.item-field-label.wanted[b-lpszxcgt23] {
    color: var(--gscv-orange);
}

.dot[b-lpszxcgt23] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.dot.current[b-lpszxcgt23] { background: var(--bs-primary); }
.dot.wanted[b-lpszxcgt23] { background: var(--gscv-orange); }

.psycho-select[b-lpszxcgt23] {
    border: 2px solid #dce4eb;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.psycho-select:focus[b-lpszxcgt23] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.12);
}

/* Footer actions inside last section */
.actions-inline[b-lpszxcgt23] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-submit[b-lpszxcgt23] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    border: none;
}

/* Navigation buttons */
.section-navigation[b-lpszxcgt23] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #eef2f5;
    background: white;
}

.btn-next-section[b-lpszxcgt23] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    border: none;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .psycho-page[b-lpszxcgt23] { padding: 1rem; }
    .psycho-header[b-lpszxcgt23] { padding: 1rem; }
    .psycho-title[b-lpszxcgt23] { font-size: 1.35rem; }
    /* Section card */
    .psycho-section[b-lpszxcgt23] {
        max-width:100vw;
    }

    .timeline-navigation[b-lpszxcgt23] { padding: 0.75rem 0.25rem; }
    .timeline-container[b-lpszxcgt23] {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.25rem 0.75rem 0.75rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }
    .timeline-item[b-lpszxcgt23] {
        flex: 0 0 auto;
        min-width: 125px;
        scroll-snap-align: center;
    }
    .timeline-connector[b-lpszxcgt23] { display: none; }

    .section-card-header[b-lpszxcgt23] { padding: 1rem; }
    .section-card-body[b-lpszxcgt23] { padding: 1rem; }

    .item-grid[b-lpszxcgt23] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .item-divider[b-lpszxcgt23] { display: none; }

    .section-navigation[b-lpszxcgt23] {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .section-navigation .btn[b-lpszxcgt23] {
        width: 100%;
        justify-content: center;
    }

    .actions-inline[b-lpszxcgt23] {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
}

/* Mobile compact (mêmes principes que Profil.razor.css) */
@media (max-width: 600px) {
    /* Container principal avec padding réduit */
    .psycho-page[b-lpszxcgt23] {
        padding: 0.75rem !important;
    }

    /* Header compact */
    .psycho-header[b-lpszxcgt23] {
        padding: 1rem !important;
        border-radius: 12px !important;
        max-width:100vw;
    }

    .psycho-title[b-lpszxcgt23] {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
    }

    /* Cartes avec padding réduit + largeur maîtrisée */
    .section-card[b-lpszxcgt23] {
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
    }

    .section-card-header[b-lpszxcgt23],
    .section-card-body[b-lpszxcgt23] {
        padding: 1rem !important;
    }

    /* Éviter les débordements */
    .psycho-select[b-lpszxcgt23] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Timeline sticky compacte (même esprit que Profil) */
    .timeline-navigation[b-lpszxcgt23] {
        padding: 1rem !important;
        border-radius: 12px !important;
        /* Taille écran */
        width: calc(100vw - 2rem) !important;
        max-width: none !important;
        box-sizing: border-box !important;
        /* ⭐ STICKY */
        position: sticky !important;
        top: 0 !important; /* Colle en haut à 0px du scroll */
        z-index: 100 !important; /* Passe au-dessus du contenu */
        /* Centre */
        margin-left: auto !important;
        margin-right: auto !important;
        /* ⭐ BONUS: Backdrop pour effet iOS */
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Shadow apparaît au scroll */
        transition: box-shadow 0.3s ease !important;
    }

    .timeline-container[b-lpszxcgt23] {
        padding: 0.75rem 1rem !important;
        gap: 0.75rem !important;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .timeline-container[b-lpszxcgt23]::-webkit-scrollbar {
        display: none;
    }

    /* Boutons full width */
    .section-navigation[b-lpszxcgt23] {
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem !important;
    }

    .section-navigation .btn[b-lpszxcgt23] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
    }
}

/* _content/Spectrometre/Components/Account/Pages/Evaluations/SocioPro.razor.rz.scp.css */
/* Page wrapper */
.socio-pro-page[b-6p1dxrje5i] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header-socio-pro[b-6p1dxrje5i] {
    /* Couleurs app: primary -> orange */
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    margin-bottom: 1.25rem;
}

.header-title-row[b-6p1dxrje5i] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-6p1dxrje5i] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-title[b-6p1dxrje5i] {
    margin: 0;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.15;
}

.header-subtitle[b-6p1dxrje5i] {
    margin-top: 0.25rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Timeline Navigation (repris de /evaluations/profil, simplifié) */
.timeline-navigation[b-6p1dxrje5i] {
    position: sticky;
    top: 0;
    z-index: 90;
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-container[b-6p1dxrje5i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.timeline-item[b-6p1dxrje5i] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .timeline-item:hover[b-6p1dxrje5i] {
        transform: translateY(-2px);
    }

.timeline-marker[b-6p1dxrje5i] {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
}

.timeline-item.active .timeline-marker[b-6p1dxrje5i] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.25);
}

.timeline-item.completed .timeline-marker[b-6p1dxrje5i] {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.timeline-number[b-6p1dxrje5i] {
    font-size: 1.05rem;
}

.timeline-label[b-6p1dxrje5i] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 120px;
}

.timeline-item.active .timeline-label[b-6p1dxrje5i] {
    color: var(--bs-primary);
}

.timeline-item.completed .timeline-label[b-6p1dxrje5i] {
    color: #10b981;
}

.timeline-connector[b-6p1dxrje5i] {
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-item.completed .timeline-connector[b-6p1dxrje5i] {
    background: #10b981;
}

.timeline-item:last-child .timeline-connector[b-6p1dxrje5i] {
    display: none;
}

/* Tableau multi-colonnes (profil validé + jalons owner) */
.socio-pro-table-scroll-x[b-6p1dxrje5i] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.socio-pro-multi-col[b-6p1dxrje5i] {
    min-width: 500px;
}

.socio-pro-col-fixed[b-6p1dxrje5i] {
    min-width: 180px;
    position: sticky;
    left: 0;
    background: var(--bs-body-bg);
    z-index: 1;
    box-shadow: 2px 0 4px rgba(0,0,0,0.05);
}

.socio-pro-multi-col thead .socio-pro-col-fixed[b-6p1dxrje5i] {
    background: var(--bs-light);
}

/* Valeurs en lecture seule (profil validé) */
.socio-pro-readonly-value[b-6p1dxrje5i] {
    display: inline-block;
    padding: 0.35rem 0.5rem;
    min-height: 2rem;
    font-weight: 500;
    color: var(--bs-body-color);
}

/* Sections */
.socio-section[b-6p1dxrje5i] {
    animation: fadeIn-b-6p1dxrje5i 0.25s ease;
}

@keyframes fadeIn-b-6p1dxrje5i {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instruction-card[b-6p1dxrje5i] {
    background: linear-gradient(135deg, rgba(52, 95, 109, 0.10) 0%, rgba(234, 119, 61, 0.10) 100%);
    border: 2px solid rgba(234, 119, 61, 0.35);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.instruction-title[b-6p1dxrje5i] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.instruction-text[b-6p1dxrje5i] {
    margin: 0;
    color: rgba(15, 23, 42, 0.85);
}

.pill[b-6p1dxrje5i] {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    margin-left: 0.25rem;
    font-weight: 700;
}

.section-card[b-6p1dxrje5i] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-header[b-6p1dxrje5i] {
    padding: 1.1rem 1.25rem;
    color: white;
}

.section-header-row[b-6p1dxrje5i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .section-header-row h2[b-6p1dxrje5i] {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
    }

.gradient-a[b-6p1dxrje5i] {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
}

.gradient-b[b-6p1dxrje5i] {
    background: linear-gradient(90deg, var(--gscv-teal) 0%, var(--bs-primary) 100%);
}

.section-body[b-6p1dxrje5i] {
    padding: 1.25rem;
}

.subsection[b-6p1dxrje5i] {
    margin-bottom: 1rem;
}

.subsection-title[b-6p1dxrje5i] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.badge-section[b-6p1dxrje5i] {
    width: 42px;
    height: 28px;
    border-radius: 10px;
    background: rgba(52, 95, 109, 0.10);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.badge-pink[b-6p1dxrje5i] {
    background: rgba(234, 119, 61, 0.12);
    color: var(--gscv-orange);
}

.badge-blue[b-6p1dxrje5i] {
    background: rgba(20, 184, 166, 0.12);
    color: var(--gscv-teal);
}

.subsection-muted[b-6p1dxrje5i] {
    background: rgba(234, 119, 61, 0.06);
    border: 1px solid rgba(234, 119, 61, 0.20);
    border-radius: 14px;
    padding: 1rem;
}

.subsection-note[b-6p1dxrje5i] {
    background: rgba(52, 95, 109, 0.06);
    border: 1px solid rgba(52, 95, 109, 0.20);
    border-radius: 14px;
    padding: 1rem;
}

.note-text[b-6p1dxrje5i] {
    color: var(--muted-foreground);
    font-style: italic;
    font-size: 0.9rem;
}

.context-card[b-6p1dxrje5i] {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 1rem;
}

.context-current[b-6p1dxrje5i] {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.10) 0%, rgba(52, 95, 109, 0.06) 100%);
    border-color: rgba(20, 184, 166, 0.25);
}

.context-wanted[b-6p1dxrje5i] {
    background: linear-gradient(135deg, rgba(90, 42, 48, 0.10) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-color: rgba(90, 42, 48, 0.25);
}

.context-title[b-6p1dxrje5i] {
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Progress */
.progress-card[b-6p1dxrje5i] {
    background: linear-gradient(135deg, rgba(52, 95, 109, 0.10) 0%, rgba(234, 119, 61, 0.10) 100%);
    border: 2px solid rgba(52, 95, 109, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.progress-title[b-6p1dxrje5i] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stat-card[b-6p1dxrje5i] {
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

.stat-label[b-6p1dxrje5i] {
    font-weight: 800;
    color: rgba(15, 23, 42, 0.75);
}

.stat-value[b-6p1dxrje5i] {
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--bs-primary);
}

/* Actions */
.actions-row[b-6p1dxrje5i] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-validate[b-6p1dxrje5i] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
}

/* Navigation buttons (repris de Profil) */
.section-navigation[b-6p1dxrje5i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.btn-next-section[b-6p1dxrje5i],
.btn-prev-section[b-6p1dxrje5i] {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-next-section[b-6p1dxrje5i] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .socio-pro-page[b-6p1dxrje5i] {
        padding: 1rem;
    }

    .header-socio-pro[b-6p1dxrje5i] {
        padding: 1rem;
        max-width:100vw;
    }

    .header-title[b-6p1dxrje5i] {
        font-size: 1.35rem;
    }

    .timeline-navigation[b-6p1dxrje5i] {
        padding: 0.75rem 0.25rem;
    }

    .timeline-container[b-6p1dxrje5i] {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.25rem 0.75rem 0.75rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
    }

    .timeline-item[b-6p1dxrje5i] {
        flex: 0 0 auto;
        min-width: 110px;
        scroll-snap-align: center;
    }

    .timeline-connector[b-6p1dxrje5i] {
        display: none;
    }

    .section-body[b-6p1dxrje5i] {
        padding: 1rem;
    }

    .section-navigation[b-6p1dxrje5i] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-next-section[b-6p1dxrje5i],
    .btn-prev-section[b-6p1dxrje5i] {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .actions-row[b-6p1dxrje5i] {
        flex-direction: column;
        align-items: stretch;
    }

        .actions-row .btn[b-6p1dxrje5i] {
            width: 100%;
        }
}

/* Mobile compact (mêmes principes que Profil.razor.css) */
@media (max-width: 600px) {
    .socio-pro-page[b-6p1dxrje5i] {
        padding: 0.75rem !important;
    }

    .header-socio-pro[b-6p1dxrje5i] {
        padding: 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        max-width: 100vw;
    }

    .section-card[b-6p1dxrje5i],
    .instruction-card[b-6p1dxrje5i],
    .progress-card[b-6p1dxrje5i] {
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        max-width: 100vw;
    }

    .section-body[b-6p1dxrje5i] {
        padding: 1rem !important;
    }

    .timeline-navigation[b-6p1dxrje5i] {
        padding: 1rem !important;
        border-radius: 12px !important;
        /* Taille écran */
        width: calc(100vw - 2rem) !important;
        max-width: none !important;
        box-sizing: border-box !important;
        /* ⭐ STICKY */
        position: sticky !important;
        top: 0 !important; /* Colle en haut à 0px du scroll */
        z-index: 100 !important; /* Passe au-dessus du contenu */
        /* Centre */
        margin-left: auto !important;
        margin-right: auto !important;
        /* ⭐ BONUS: Backdrop pour effet iOS */
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Shadow apparaît au scroll */
        transition: box-shadow 0.3s ease !important;
    }

    .timeline-container[b-6p1dxrje5i] {
        padding: 0.75rem 1rem !important;
        gap: 0.75rem !important;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

        .timeline-container[b-6p1dxrje5i]::-webkit-scrollbar {
            display: none;
        }

    .section-navigation[b-6p1dxrje5i] {
        align-items: center !important;
        justify-content: center !important;
        margin-top: 2.25rem;
        padding-top: 1rem;
    }

    .btn-next-section[b-6p1dxrje5i],
    .btn-prev-section[b-6p1dxrje5i] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
    }
}
/* _content/Spectrometre/Components/Account/Pages/Notifications.razor.rz.scp.css */
.notifications-page[b-vzzqbpk7ka] {
    padding: 1.5rem 0 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.notifications-title[b-vzzqbpk7ka] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--foreground, #0f172a);
}

.notifications-toolbar[b-vzzqbpk7ka] {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.notifications-page-size-label[b-vzzqbpk7ka] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--foreground-muted, #64748b);
}

.notifications-page-size-label .form-select[b-vzzqbpk7ka] {
    width: auto;
    min-width: 4rem;
}

.notifications-list[b-vzzqbpk7ka] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item[b-vzzqbpk7ka] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

.notification-unread[b-vzzqbpk7ka] {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
}

.notification-meta[b-vzzqbpk7ka] {
    flex-shrink: 0;
}

.notification-date[b-vzzqbpk7ka] {
    font-size: 0.85rem;
    color: var(--foreground-muted, #64748b);
}

.notification-content[b-vzzqbpk7ka] {
    flex: 1;
    min-width: 0;
}

.notification-actions[b-vzzqbpk7ka] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notifications-pagination[b-vzzqbpk7ka] {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notifications-pagination-info[b-vzzqbpk7ka] {
    font-size: 0.9rem;
    color: var(--foreground-muted, #64748b);
}

.notifications-pagination-buttons[b-vzzqbpk7ka] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notifications-page-num[b-vzzqbpk7ka] {
    font-size: 0.9rem;
    color: var(--foreground-muted, #64748b);
}
/* _content/Spectrometre/Components/Account/Pages/Owner/Companies.razor.rz.scp.css */
/* Page Owner / Companies */
.companies-page[b-g1oqqxtk48] {
    padding: 1.5rem 0;
    max-width: 100%;
    margin: 0 auto;
}

.companies-header[b-g1oqqxtk48] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.companies-title[b-g1oqqxtk48] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.companies-toolbar[b-g1oqqxtk48] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.companies-pagination-label[b-g1oqqxtk48] {
    font-size: 0.9rem;
    color: var(--muted-foreground, #64748b);
    margin: 0;
}

.companies-table-wrapper[b-g1oqqxtk48] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.companies-table[b-g1oqqxtk48] {
    margin: 0;
    width: 100%;
}

.companies-table thead[b-g1oqqxtk48] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.companies-table th[b-g1oqqxtk48] {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-align: left;
}

.companies-table td[b-g1oqqxtk48] {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.companies-table tbody tr:last-child td[b-g1oqqxtk48] {
    border-bottom: none;
}

.companies-pagination[b-g1oqqxtk48] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

/* Modal AddCompany */
.modal-backdrop-companies[b-g1oqqxtk48] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-companies[b-g1oqqxtk48] {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header-companies[b-g1oqqxtk48] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-companies h3[b-g1oqqxtk48] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-companies[b-g1oqqxtk48] {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
}

.modal-body-companies[b-g1oqqxtk48] {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
}

.form-group-companies label[b-g1oqqxtk48] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-companies[b-g1oqqxtk48] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.modal-footer-companies[b-g1oqqxtk48] {
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* _content/Spectrometre/Components/Account/Pages/Owner/CompanyDetail.razor.rz.scp.css */
/* Page Owner / Company detail */
.company-detail-page[b-r8jdhiw9ig] {
    padding: 1.5rem 0 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.company-detail-header[b-r8jdhiw9ig] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-detail-title[b-r8jdhiw9ig] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.company-detail-subtitle[b-r8jdhiw9ig] {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--muted-foreground, #64748b);
}

.company-detail-actions[b-r8jdhiw9ig] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.company-detail-grid[b-r8jdhiw9ig] {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.company-detail-card[b-r8jdhiw9ig] {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.company-detail-section-title[b-r8jdhiw9ig] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--foreground, #0f172a);
}

.company-detail-subsection-title[b-r8jdhiw9ig] {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--foreground, #0f172a);
}

.company-detail-form[b-r8jdhiw9ig] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-detail-form-row[b-r8jdhiw9ig] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-detail-form-row .form-group-company-detail[b-r8jdhiw9ig] {
    flex: 1 1 0;
}

.form-group-company-detail label[b-r8jdhiw9ig] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-company-detail[b-r8jdhiw9ig] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.company-detail-form-actions[b-r8jdhiw9ig] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.company-detail-metrics[b-r8jdhiw9ig] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric-card[b-r8jdhiw9ig] {
    flex: 1 1 0;
    min-width: 120px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e2e8f0;
}

.metric-label[b-r8jdhiw9ig] {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.metric-value[b-r8jdhiw9ig] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.company-detail-chart[b-r8jdhiw9ig] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.chart-row[b-r8jdhiw9ig] {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 4fr) auto;
    align-items: center;
    gap: 0.5rem;
}

.chart-row-label[b-r8jdhiw9ig] {
    font-size: 0.8rem;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chart-row-bar-wrapper[b-r8jdhiw9ig] {
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    height: 8px;
}

.chart-row-bar[b-r8jdhiw9ig] {
    height: 100%;
    background: linear-gradient(90deg, var(--gscv-orange), var(--bs-primary));
    border-radius: 999px;
}

.chart-row-value[b-r8jdhiw9ig] {
    font-size: 0.8rem;
    color: #0f172a;
    min-width: 2.5rem;
    text-align: right;
}

.company-detail-info-list[b-r8jdhiw9ig] {
    list-style: none;
    padding-left: 0;
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #475569;
}

.company-detail-info-list li + li[b-r8jdhiw9ig] {
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .company-detail-grid[b-r8jdhiw9ig] {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* _content/Spectrometre/Components/Account/Pages/Owner/ManagerDetail.razor.rz.scp.css */
/* Page Owner / Manager detail */
.manager-detail-page[b-rssk189fcd] {
    padding: 1.5rem 0 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.manager-detail-header[b-rssk189fcd] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.manager-detail-title[b-rssk189fcd] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.manager-detail-subtitle[b-rssk189fcd] {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--muted-foreground, #64748b);
}

.manager-detail-actions[b-rssk189fcd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.manager-detail-grid[b-rssk189fcd] {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.manager-detail-card[b-rssk189fcd] {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.manager-detail-section-title[b-rssk189fcd] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--foreground, #0f172a);
}

.manager-detail-subsection-title[b-rssk189fcd] {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--foreground, #0f172a);
}

.manager-detail-form[b-rssk189fcd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-manager-detail label[b-rssk189fcd] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-manager-detail[b-rssk189fcd] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.manager-detail-form-actions[b-rssk189fcd] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.manager-detail-assignments[b-rssk189fcd] {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.manager-detail-assignment-row[b-rssk189fcd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.manager-detail-add-assignment[b-rssk189fcd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.manager-detail-chart-wrapper[b-rssk189fcd] {
    min-height: 280px;
}

.manager-detail-chart-legend[b-rssk189fcd] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: var(--muted-foreground, #64748b);
}

.manager-detail-legend-item[b-rssk189fcd] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.manager-detail-legend-dot[b-rssk189fcd] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .manager-detail-grid[b-rssk189fcd] {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* _content/Spectrometre/Components/Account/Pages/Owner/ManagerEvaluation.razor.rz.scp.css */
/* Page Owner / Manager evaluation */
.manager-eval-page[b-yrnk9eh94r] {
    padding: 1.5rem 0 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.manager-eval-header[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.manager-eval-title[b-yrnk9eh94r] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.manager-eval-subtitle[b-yrnk9eh94r] {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--muted-foreground, #64748b);
}

.manager-eval-actions[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.manager-eval-card[b-yrnk9eh94r] {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    margin-bottom: 1.5rem;
}

.manager-eval-section-title[b-yrnk9eh94r] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.manager-eval-objectives-section-header[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.manager-eval-metrics[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.manager-eval-metric[b-yrnk9eh94r] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.manager-eval-metric-label[b-yrnk9eh94r] {
    font-size: 0.8rem;
    color: #64748b;
}

.manager-eval-metric-value[b-yrnk9eh94r] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.manager-eval-eval-actions[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.manager-eval-date-picker-row[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.manager-eval-date-input[b-yrnk9eh94r] {
    width: auto;
    max-width: 180px;
}

.manager-eval-objectives-grid[b-yrnk9eh94r] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.manager-eval-col-objectifs[b-yrnk9eh94r],
.manager-eval-col-resultats[b-yrnk9eh94r] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manager-eval-col-title[b-yrnk9eh94r] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.manager-eval-col-actions[b-yrnk9eh94r] {
    margin-top: 0.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.manager-eval-objective-actions[b-yrnk9eh94r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.manager-eval-table-wrapper[b-yrnk9eh94r] {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.manager-eval-table[b-yrnk9eh94r] {
    margin: 0;
    width: 100%;
    font-size: 0.9rem;
}

.manager-eval-table th[b-yrnk9eh94r] {
    padding: 0.6rem 0.75rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #64748b;
}

.manager-eval-table td[b-yrnk9eh94r] {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.manager-eval-table td input[b-yrnk9eh94r],
.manager-eval-table td .form-select[b-yrnk9eh94r] {
    min-width: 0;
}

.manager-eval-new-row td[b-yrnk9eh94r] {
    background: #fafafa;
}

@media (max-width: 900px) {
    .manager-eval-objectives-grid[b-yrnk9eh94r] {
        grid-template-columns: 1fr;
    }
}
/* _content/Spectrometre/Components/Account/Pages/Owner/ManagerEvaluationArchives.razor.rz.scp.css */
/* Base layout shared with ManagerEvaluation */
.manager-eval-page[b-n65ccxjd3x] {
    padding: 1.5rem 0 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.manager-eval-header[b-n65ccxjd3x] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.manager-eval-title[b-n65ccxjd3x] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.manager-eval-subtitle[b-n65ccxjd3x] {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--muted-foreground, #64748b);
}

.manager-eval-actions[b-n65ccxjd3x] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.manager-eval-card[b-n65ccxjd3x] {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.manager-eval-section-title[b-n65ccxjd3x] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--foreground, #0f172a);
}

/* Archive-specific */
.manager-eval-archives-list[b-n65ccxjd3x] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manager-eval-archive-item[b-n65ccxjd3x] {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.manager-eval-archive-dates[b-n65ccxjd3x] {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.manager-eval-archive-meta[b-n65ccxjd3x] {
    font-size: 0.9rem;
    color: #64748b;
}

.manager-eval-archive-item.selected[b-n65ccxjd3x] {
    border-color: var(--bs-primary, #0d6efd);
    background: #eef2ff;
}

/* Détail affiché en dessous de l'item cliqué */
.manager-eval-archive-item-wrapper[b-n65ccxjd3x] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manager-eval-archive-detail[b-n65ccxjd3x] {
    margin-top: 0.25rem;
}
/* _content/Spectrometre/Components/Account/Pages/Owner/ManagerProfilProfessionnel.razor.rz.scp.css */
/* SOLUTION FINALE - PROPRE ET SANS DUPLICATIONS */

*[b-eyxwf8cc3e] {
    box-sizing: border-box !important;
}

/* Forcer TOUS les conteneurs à ne pas déborder */
.manager-profil-pro-page[b-eyxwf8cc3e],
.manager-profil-pro-page > *[b-eyxwf8cc3e],
.manager-profil-pro-section[b-eyxwf8cc3e],
.manager-profil-pro-section *:not(table):not(th):not(td):not(tr):not(tbody):not(thead):not(select):not(option):not(span):not(strong):not(i):not(button):not(p):not(h1):not(h2):not(h3)[b-eyxwf8cc3e] {
    max-width: 100% !important;
}

.manager-profil-pro-page[b-eyxwf8cc3e] {
    width: 100% !important;
    overflow-x: hidden !important;
    padding: 1.5rem;
}

.manager-profil-pro-header[b-eyxwf8cc3e] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.manager-profil-pro-title[b-eyxwf8cc3e] {
    font-size: 1.5rem;
    font-weight: 700;
}

.manager-profil-pro-subtitle[b-eyxwf8cc3e] {
    margin: 0.25rem 0 0;
    color: var(--bs-secondary);
}

.manager-profil-pro-actions[b-eyxwf8cc3e] {
    display: flex;
    gap: 0.5rem;
}

/* CONTENEURS - ULTRA STRICT */
.manager-profil-pro-section[b-eyxwf8cc3e] {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
}

    .manager-profil-pro-section .section-card[b-eyxwf8cc3e] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: block !important;
    }

    .manager-profil-pro-section .section-body[b-eyxwf8cc3e] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: block !important;
    }

/* Le wrapper direct autour de table-scroll-x */
.section-body > div[b-eyxwf8cc3e] {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
}

/* DIV DE SCROLL - LE PLUS IMPORTANT */
.table-scroll-x[b-eyxwf8cc3e] {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.5rem;
    display: block !important;
    position: relative !important;
}

/* TABLEAU - PEUT ÊTRE PLUS LARGE */
.manager-profil-pro-table[b-eyxwf8cc3e] {
    width: auto !important;
    min-width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 0 !important;
    display: table !important;
}

    /* COLONNE STICKY (première colonne) */
    .manager-profil-pro-table .col-fixed[b-eyxwf8cc3e] {
        position: sticky !important;
        left: 0 !important;
        min-width: 200px !important;
        width: 200px !important;
        max-width: 200px !important;
        background: var(--bs-body-bg) !important;
        z-index: 10 !important;
        box-shadow: 2px 0 4px rgba(0,0,0,0.08) !important;
        white-space: normal !important;
        padding: 0.75rem !important;
    }

    .manager-profil-pro-table thead .col-fixed[b-eyxwf8cc3e] {
        background: var(--bs-light) !important;
        z-index: 11 !important;
        font-weight: 600 !important;
    }

    /* EN-TÊTES (th) - Largeur 170px avec retour à la ligne */
    .manager-profil-pro-table th:not(.col-fixed)[b-eyxwf8cc3e] {
        min-width: 170px !important;
        width: 170px !important;
        max-width: 170px !important;
        white-space: normal !important; /* Permet le retour à la ligne */
        text-align: center !important;
        padding: 0.75rem 0.5rem !important;
        font-weight: 600 !important;
        font-size: 0.8125rem !important; /* 13px */
        line-height: 1.2 !important;
        vertical-align: middle !important;
        height: auto !important;
        min-height: 60px !important; /* Hauteur minimale uniforme */
    }

    /* CELLULES DE DONNÉES (td) - Largeur 170px sans retour à la ligne */
    .manager-profil-pro-table td:not(.col-fixed)[b-eyxwf8cc3e] {
        min-width: 170px !important;
        width: 170px !important;
        max-width: 170px !important;
        white-space: nowrap !important; /* Pas de retour à la ligne */
        text-align: center !important;
        padding: 0.5rem !important;
        vertical-align: middle !important;
    }

    /* SELECTS dans les cellules */
    .manager-profil-pro-table select[b-eyxwf8cc3e] {
        width: 100% !important;
        max-width: 155px !important; /* Ajusté pour 170px de colonne */
        margin: 0 auto !important;
        display: block !important;
    }

/* Navigation */
.section-navigation[b-eyxwf8cc3e] {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.btn-next-section[b-eyxwf8cc3e],
.btn-prev-section[b-eyxwf8cc3e] {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-next-section[b-eyxwf8cc3e],
.btn-validate[b-eyxwf8cc3e] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(18, 80%, 54%) 100%);
    border: none;
    color: white;
}

.btn-next-section[b-eyxwf8cc3e] {
    margin-left: auto;
}
/* _content/Spectrometre/Components/Account/Pages/Owner/Managers.razor.rz.scp.css */
/* Page Owner / Managers */
.managers-page[b-uopzqforlb] {
    padding: 1.5rem 0;
    max-width: 100%;
    margin: 0 auto;
}

.managers-header[b-uopzqforlb] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.managers-title[b-uopzqforlb] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.managers-toolbar[b-uopzqforlb] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.managers-pagination-label[b-uopzqforlb] {
    font-size: 0.9rem;
    color: var(--muted-foreground, #64748b);
    margin: 0;
}

.managers-table-wrapper[b-uopzqforlb] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.managers-table[b-uopzqforlb] {
    margin: 0;
    width: 100%;
}

.managers-table thead[b-uopzqforlb] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.managers-table th[b-uopzqforlb] {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-align: left;
}

.managers-table td[b-uopzqforlb] {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.managers-table tbody tr:last-child td[b-uopzqforlb] {
    border-bottom: none;
}

.managers-row-clickable[b-uopzqforlb] {
    cursor: pointer;
}

.managers-row-clickable:hover[b-uopzqforlb] {
    background-color: #f8fafc !important;
}

.managers-pagination[b-uopzqforlb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

/* Modals (AddManager / AddService) */
.modal-backdrop-managers[b-uopzqforlb] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-managers[b-uopzqforlb] {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header-managers[b-uopzqforlb] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-managers h3[b-uopzqforlb] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-managers[b-uopzqforlb] {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
}

.modal-body-managers[b-uopzqforlb] {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
}

.form-group-managers label[b-uopzqforlb] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-managers[b-uopzqforlb] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.modal-footer-managers[b-uopzqforlb] {
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
/* _content/Spectrometre/Components/Account/Pages/Owner/Services.razor.rz.scp.css */
/* Page Owner / Services */
.services-page[b-qiw7bl89x2] {
    padding: 1.5rem 0;
    max-width: 100%;
    margin: 0 auto;
}

.services-header[b-qiw7bl89x2] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.services-title[b-qiw7bl89x2] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground, #0f172a);
}

.services-toolbar[b-qiw7bl89x2] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.services-pagination-label[b-qiw7bl89x2] {
    font-size: 0.9rem;
    color: var(--muted-foreground, #64748b);
    margin: 0;
}

.services-table-wrapper[b-qiw7bl89x2] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.services-table[b-qiw7bl89x2] {
    margin: 0;
    width: 100%;
}

.services-table thead[b-qiw7bl89x2] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.services-table th[b-qiw7bl89x2] {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-align: left;
}

.services-table td[b-qiw7bl89x2] {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.services-table tbody tr:last-child td[b-qiw7bl89x2] {
    border-bottom: none;
}

.services-pagination[b-qiw7bl89x2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

/* Modal AddService */
.modal-backdrop-services[b-qiw7bl89x2] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-services[b-qiw7bl89x2] {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header-services[b-qiw7bl89x2] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-services h3[b-qiw7bl89x2] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-services[b-qiw7bl89x2] {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
}

.modal-body-services[b-qiw7bl89x2] {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
}

.form-group-services label[b-qiw7bl89x2] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.form-control-services[b-qiw7bl89x2] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.modal-footer-services[b-qiw7bl89x2] {
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
/* _content/Spectrometre/Components/Account/Pages/Owner/SettingsOwner.razor.rz.scp.css */
.settings-owner-page[b-pmhnnf76jv] {
    padding: 1.5rem 0 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.settings-owner-title[b-pmhnnf76jv] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--foreground, #0f172a);
}

.settings-owner-card[b-pmhnnf76jv] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.settings-owner-label[b-pmhnnf76jv] {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground, #0f172a);
    margin-bottom: 0.25rem;
}

.settings-owner-description[b-pmhnnf76jv] {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 1rem;
}

.settings-owner-input[b-pmhnnf76jv] {
    max-width: 120px;
}

.settings-owner-saved[b-pmhnnf76jv] {
    margin: 0;
}
/* _content/Spectrometre/Components/Account/Pages/SpectreEmotionnel/Analyses.razor.rz.scp.css */
/* Page wrapper */
.analyses-page[b-7y8xmbsf71] {
    min-height: 100vh;
    padding: 2rem 0;
    max-width: 100vw;
}

.main-container[b-7y8xmbsf71] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Header */
.page-header[b-7y8xmbsf71] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);

}

.page-header-top[b-7y8xmbsf71] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title[b-7y8xmbsf71] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.btn-back[b-7y8xmbsf71] {
    background: white;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-back:hover[b-7y8xmbsf71] {
        background: var(--bs-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 95, 109, 0.25);
    }

/* Filter Bar */
.filter-bar[b-7y8xmbsf71] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-item[b-7y8xmbsf71] {
    flex: 1;
    min-width: 150px;
}

.filter-label[b-7y8xmbsf71] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.filter-select[b-7y8xmbsf71] {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    color: var(--foreground);
}

    .filter-select:focus[b-7y8xmbsf71] {
        outline: none;
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1);
    }

/* Stats Grid */
.stats-grid[b-7y8xmbsf71] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-7y8xmbsf71] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .stat-card:hover[b-7y8xmbsf71] {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.stat-icon[b-7y8xmbsf71] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-icon.positive[b-7y8xmbsf71] {
    background: linear-gradient(135deg, var(--bs-success) 0%, #059669 100%);
    color: white;
}

.stat-icon.neutral[b-7y8xmbsf71] {
    background: linear-gradient(135deg, var(--gscv-orange) 0%, #d97706 100%);
    color: white;
}

.stat-icon.negative[b-7y8xmbsf71] {
    background: linear-gradient(135deg, var(--bs-danger) 0%, #dc2626 100%);
    color: white;
}

.stat-icon.info[b-7y8xmbsf71] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #2563eb 100%);
    color: white;
}

.stat-value[b-7y8xmbsf71] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    line-height: 1.2;
}

.stat-label[b-7y8xmbsf71] {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.stat-trend[b-7y8xmbsf71] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.stat-trend.up[b-7y8xmbsf71] {
    color: var(--bs-success);
}

.stat-trend.down[b-7y8xmbsf71] {
    color: var(--bs-danger);
}

/* Chart Container */
.chart-container[b-7y8xmbsf71] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.chart-title[b-7y8xmbsf71] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.chart-wrapper[b-7y8xmbsf71] {
    position: relative;
    height: 400px;
}

/* Distribution Container */
.distribution-container[b-7y8xmbsf71] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Heatmap Container */
.heatmap-container[b-7y8xmbsf71] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.heatmap-grid[b-7y8xmbsf71] {
    display: grid;
    grid-template-columns: auto repeat(7, 1fr);
    gap: 4px;
    margin-top: 1rem;
}

.heatmap-label[b-7y8xmbsf71] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
    padding: 0.5rem;
}

.heatmap-cell[b-7y8xmbsf71] {
    aspect-ratio: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .heatmap-cell:hover[b-7y8xmbsf71] {
        transform: scale(1.1);
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.heatmap-cell.level-0[b-7y8xmbsf71] {
    background: #f3f4f6;
}

.heatmap-cell.level-1[b-7y8xmbsf71] {
    background: #dcfce7;
}

.heatmap-cell.level-2[b-7y8xmbsf71] {
    background: #86efac;
}

.heatmap-cell.level-3[b-7y8xmbsf71] {
    background: #4ade80;
}

.heatmap-cell.level-4[b-7y8xmbsf71] {
    background: #22c55e;
}

.heatmap-cell.level-5[b-7y8xmbsf71] {
    background: #16a34a;
}

/* Insights Section */
.insights-section[b-7y8xmbsf71] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-item[b-7y8xmbsf71] {
    padding: 1rem;
    border-left: 4px solid var(--bs-primary);
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

.insight-item.positive[b-7y8xmbsf71] {
    border-left-color: var(--bs-success);
}

.insight-item.warning[b-7y8xmbsf71] {
    border-left-color: var(--gscv-orange);
}

.insight-item.negative[b-7y8xmbsf71] {
    border-left-color: var(--bs-danger);
}

.insight-title[b-7y8xmbsf71] {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.insight-text[b-7y8xmbsf71] {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .analyses-page[b-7y8xmbsf71] {
        padding: 1rem 0;
    }

    .main-container[b-7y8xmbsf71] {
        padding: 0 1rem;
    }

    .page-header[b-7y8xmbsf71] {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .page-title[b-7y8xmbsf71] {
        font-size: 1.5rem;
    }

    .filter-bar[b-7y8xmbsf71] {
        flex-direction: column;
    }

    .filter-item[b-7y8xmbsf71] {
        width: 100%;
    }

    .stats-grid[b-7y8xmbsf71] {
        grid-template-columns: 1fr;
    }

    .chart-container[b-7y8xmbsf71] {
        padding: 1.5rem;
    }

    .chart-wrapper[b-7y8xmbsf71] {
        height: 300px;
    }

    .distribution-container[b-7y8xmbsf71] {
        grid-template-columns: 1fr;
    }

    .heatmap-grid[b-7y8xmbsf71] {
        grid-template-columns: auto repeat(7, 1fr);
        gap: 2px;
    }

    .heatmap-label[b-7y8xmbsf71] {
        font-size: 0.65rem;
        padding: 0.25rem;
    }
}

/* Mobile compact (max-width: 600px) */
@media (max-width: 600px) {
    .analyses-page[b-7y8xmbsf71] {
        padding: 0.75rem 0;
    }

    .main-container[b-7y8xmbsf71] {
        padding: 0 0.75rem !important;
    }

    .page-header[b-7y8xmbsf71] {
        padding: 1rem !important;
        border-radius: 16px !important;
    }

    .page-header-top[b-7y8xmbsf71] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title[b-7y8xmbsf71] {
        font-size: 1.25rem !important;
    }

    .btn-back[b-7y8xmbsf71] {
        width: 100%;
        justify-content: center;
    }

    .stats-grid[b-7y8xmbsf71] {
        gap: 1rem;
    }

    .stat-card[b-7y8xmbsf71] {
        padding: 1rem !important;
    }

    .stat-icon[b-7y8xmbsf71] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .stat-value[b-7y8xmbsf71] {
        font-size: 1.5rem !important;
    }

    .chart-container[b-7y8xmbsf71] {
        padding: 1rem !important;
        border-radius: 12px !important;
    }

    .chart-title[b-7y8xmbsf71] {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .chart-wrapper[b-7y8xmbsf71] {
        height: 250px !important;
    }

    .distribution-container[b-7y8xmbsf71] {
        gap: 1rem;
    }

    .heatmap-container[b-7y8xmbsf71] {
        padding: 1rem !important;
        overflow-x: auto;
    }

    .heatmap-grid[b-7y8xmbsf71] {
        min-width: 500px;
    }

    .insights-section[b-7y8xmbsf71] {
        padding: 1rem !important;
    }

    .insight-item[b-7y8xmbsf71] {
        padding: 0.75rem !important;
    }
}
/* _content/Spectrometre/Components/Account/Pages/SpectreEmotionnel/Calendrier.razor.rz.scp.css */
/* Page wrapper */
.calendrier-page[b-i234l0glia] {
    max-width: 100vw;
    margin: 0 auto;
    padding: 2rem;
}

/* Calendar Card */
.calendar-card[b-i234l0glia] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Calendar Header */
.calendar-header[b-i234l0glia] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position:sticky;
}

.calendar-title[b-i234l0glia] {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
}

.calendar-controls[b-i234l0glia] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-calendar[b-i234l0glia] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-calendar:hover[b-i234l0glia] {
        background: white;
        color: var(--bs-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }


/* Calendar Grid */
.calendar-grid[b-i234l0glia] {
    padding: 2rem;
}

.weekdays[b-i234l0glia] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.weekday[b-i234l0glia] {
    text-align: center;
    font-weight: 700;
    color: var(--bs-primary);
    padding: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.days-grid[b-i234l0glia] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day-cell[b-i234l0glia] {
    aspect-ratio: 1;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .day-cell:hover[b-i234l0glia] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(52, 95, 109, 0.2);
        border-color: var(--bs-primary);
    }

    .day-cell.empty[b-i234l0glia] {
        cursor: default;
        border-color: transparent;
        background: transparent;
    }

        .day-cell.empty:hover[b-i234l0glia] {
            transform: none;
            box-shadow: none;
        }

    .day-cell.today[b-i234l0glia] {
        border-color: var(--bs-primary);
        background: linear-gradient(135deg, rgba(52, 95, 109, 0.1) 0%, rgba(234, 119, 61, 0.1) 100%);
        font-weight: 700;
    }

    .day-cell.has-data[b-i234l0glia] {
        border-color: var(--bs-success);
    }

.day-number[b-i234l0glia] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.mood-indicator[b-i234l0glia] {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0.25rem;
}

.day-type-badge[b-i234l0glia] {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.badge-travail[b-i234l0glia] {
    background: var(--bs-primary);
}

.badge-repos[b-i234l0glia] {
    background: var(--bs-success);
}

.badge-special[b-i234l0glia] {
    background: var(--gscv-orange);
}

/* Calendar Footer */
.calendar-footer[b-i234l0glia] {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-top: 1px solid #e5e7eb;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section[b-i234l0glia] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.footer-section:hover[b-i234l0glia] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.footer-section-header[b-i234l0glia] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.footer-section-title[b-i234l0glia] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-section-header i[b-i234l0glia] {
    color: var(--gscv-orange);
    font-size: 1.25rem;
}

/* Legend Section */
.legend-grid[b-i234l0glia] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.legend-card[b-i234l0glia] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.legend-card:hover[b-i234l0glia] {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-color: var(--bs-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(52, 95, 109, 0.1);
}

.legend-icon[b-i234l0glia] {
    flex-shrink: 0;
}

.legend-color[b-i234l0glia] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-success[b-i234l0glia] {
    background: var(--bs-success);
}

.badge-primary[b-i234l0glia] {
    background: var(--bs-primary);
}

.badge-repos[b-i234l0glia] {
    background: var(--bs-success);
}

.badge-special[b-i234l0glia] {
    background: var(--gscv-orange);
}

.legend-content[b-i234l0glia] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legend-label[b-i234l0glia] {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.9375rem;
}

.legend-description[b-i234l0glia] {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Stats Section */
.stats-grid[b-i234l0glia] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-card[b-i234l0glia] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card[b-i234l0glia]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover[b-i234l0glia]::before {
    transform: scaleX(1);
}

.stat-card:hover[b-i234l0glia] {
    border-color: var(--bs-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(52, 95, 109, 0.15);
}

.stat-positive[b-i234l0glia] {
    background: linear-gradient(135deg, rgba(90, 42%, 48%, 0.05) 0%, rgba(90, 42%, 48%, 0.02) 100%);
}

.stat-positive .stat-icon[b-i234l0glia] {
    background: rgba(90, 42%, 48%, 0.1);
    color: var(--bs-success);
}

.stat-neutral[b-i234l0glia] {
    background: linear-gradient(135deg, rgba(44, 89%, 55%, 0.05) 0%, rgba(44, 89%, 55%, 0.02) 100%);
}

.stat-neutral .stat-icon[b-i234l0glia] {
    background: rgba(44, 89%, 55%, 0.1);
    color: var(--gscv-gold);
}

.stat-negative[b-i234l0glia] {
    background: linear-gradient(135deg, rgba(2, 53%, 51%, 0.05) 0%, rgba(2, 53%, 51%, 0.02) 100%);
}

.stat-negative .stat-icon[b-i234l0glia] {
    background: rgba(2, 53%, 51%, 0.1);
    color: var(--gscv-red);
}

.stat-completed[b-i234l0glia] {
    background: linear-gradient(135deg, rgba(52, 95, 109, 0.05) 0%, rgba(52, 95, 109, 0.02) 100%);
}

.stat-completed .stat-icon[b-i234l0glia] {
    background: rgba(52, 95, 109, 0.1);
    color: var(--bs-primary);
}

.stat-icon[b-i234l0glia] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon[b-i234l0glia] {
    transform: scale(1.1) rotate(5deg);
}

.stat-content[b-i234l0glia] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.stat-value[b-i234l0glia] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1.2;
}

.stat-label[b-i234l0glia] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Modal */
.modal-overlay[b-i234l0glia] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.modal-content[b-i234l0glia] {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-i234l0glia] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title[b-i234l0glia] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn-close-modal[b-i234l0glia] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-close-modal:hover[b-i234l0glia] {
        background: rgba(255, 255, 255, 0.3);
    }

.modal-body[b-i234l0glia] {
    padding: 1.5rem;
}

.modal-footer[b-i234l0glia] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn[b-i234l0glia] {
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary[b-i234l0glia] {
    background: #e5e7eb;
    color: var(--foreground);
}

    .btn-secondary:hover[b-i234l0glia] {
        background: #d1d5db;
    }

.btn-primary[b-i234l0glia] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
}

    .btn-primary:hover[b-i234l0glia] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 95, 109, 0.25);
    }

/* Responsive */
@media (max-width: 768px) {
    .calendrier-page[b-i234l0glia] {
        padding: 1rem;
    }

    .calendar-header[b-i234l0glia] {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .calendar-title[b-i234l0glia] {
        font-size: 1.5rem;
    }

    .calendar-controls[b-i234l0glia] {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .btn-calendar[b-i234l0glia] {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .calendar-footer[b-i234l0glia] {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .footer-section[b-i234l0glia] {
        padding: 1.25rem;
    }

    .legend-grid[b-i234l0glia] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stats-grid[b-i234l0glia] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-value[b-i234l0glia] {
        font-size: 1.5rem;
    }

    .stat-icon[b-i234l0glia] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .calendar-grid[b-i234l0glia] {
        padding: 1rem;
    }

    .days-grid[b-i234l0glia] {
        gap: 0.25rem;
    }

    .day-cell[b-i234l0glia] {
        padding: 0.25rem;
    }

    .day-number[b-i234l0glia] {
        font-size: 0.875rem;
    }

    .mood-indicator[b-i234l0glia] {
        font-size: 1rem;
    }
}

/* Mobile compact (max-width: 600px) */
@media (max-width: 600px) {
    .calendrier-page[b-i234l0glia] {
        padding: 0rem !important;
    }

    .calendar-card[b-i234l0glia] {
        border-radius: 16px !important;
    }

    .calendar-header[b-i234l0glia] {
        padding: 1rem !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .calendar-title[b-i234l0glia] {
        font-size: 1.25rem !important;
    }

    .calendar-controls[b-i234l0glia] {
        flex-direction: column !important;
        width: 100%;
        gap: 0.5rem;
    }

    .btn-calendar[b-i234l0glia] {
        width: 100%;
        justify-content: center;
    }

    .calendar-footer[b-i234l0glia] {
        padding: 1rem !important;
        gap: 1rem;
    }

    .footer-section[b-i234l0glia] {
        padding: 1rem !important;
    }

    .footer-section-header[b-i234l0glia] {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .footer-section-title[b-i234l0glia] {
        font-size: 1rem;
    }

    .legend-grid[b-i234l0glia] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-grid[b-i234l0glia] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-card[b-i234l0glia] {
        padding: 1rem;
    }

    .stat-value[b-i234l0glia] {
        font-size: 1.5rem !important;
    }

    .stat-icon[b-i234l0glia] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .legend-card[b-i234l0glia] {
        padding: 0.75rem;
    }

    .calendar-grid[b-i234l0glia] {
        padding: 0rem !important;
    }

    .weekdays[b-i234l0glia] {
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .weekday[b-i234l0glia] {
        font-size: 0.75rem;
        padding: 0.25rem;
    }

    .days-grid[b-i234l0glia] {
        gap: 0rem;
    }

    .day-cell[b-i234l0glia] {
        padding: 0rem !important;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
    }

    .day-number[b-i234l0glia] {
        font-size: 0.75rem !important;
    }

    .mood-indicator[b-i234l0glia] {
        font-size: 0.875rem !important;
    }

    .modal-content[b-i234l0glia] {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-header[b-i234l0glia] {
        padding: 1rem !important;
    }

    .modal-body[b-i234l0glia] {
        padding: 1rem !important;
    }

    .modal-footer[b-i234l0glia] {
        flex-direction: column;
        padding: 1rem !important;
    }

    .btn[b-i234l0glia] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/Spectrometre/Components/Account/Pages/SpectreEmotionnel/SaisieJournaliere.razor.rz.scp.css */
/* Page wrapper */
.saisie-journaliere-page[b-6ymoxgvqft] {
    min-height: 100vh;
    padding-bottom: 100px; /* Espace pour la barre de sauvegarde */
}

.main-container[b-6ymoxgvqft] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Day Header */
.day-header[b-6ymoxgvqft] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.day-header-top[b-6ymoxgvqft] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.day-title[b-6ymoxgvqft] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.btn-back[b-6ymoxgvqft] {
    background: white;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-back:hover[b-6ymoxgvqft] {
        background: var(--bs-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 95, 109, 0.25);
    }

.day-info[b-6ymoxgvqft] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item[b-6ymoxgvqft] {
    flex: 1;
    min-width: 200px;
}

.info-label[b-6ymoxgvqft] {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Augmentation de la spécificité pour surcharger Bootstrap */
/* Cibler tous les cas possibles : avec ou sans form-select, avec ou sans select */
.info-item .info-select[b-6ymoxgvqft],
.info-item select.info-select[b-6ymoxgvqft],
.info-item select.info-select.form-select[b-6ymoxgvqft],
.info-item .info-select.form-select[b-6ymoxgvqft],
.day-info .info-select[b-6ymoxgvqft],
.day-info select.info-select[b-6ymoxgvqft],
.day-info select.info-select.form-select[b-6ymoxgvqft],
.day-info .info-select.form-select[b-6ymoxgvqft] {
    width: 100% !important;
    padding: 0.5rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
    background-image: none !important; /* Supprimer la flèche Bootstrap */
    background-position: unset !important;
    background-repeat: unset !important;
    background-size: unset !important;
    color: var(--foreground) !important;
    /* Surcharger les styles Bootstrap */
    display: block !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    appearance: auto !important;
    /* Réinitialiser les variables CSS Bootstrap */
    --bs-form-select-bg-img: none !important;
    --bs-form-select-bg-icon: none !important;
}

    .info-item .info-select:focus[b-6ymoxgvqft],
    .info-item select.info-select:focus[b-6ymoxgvqft],
    .info-item select.info-select.form-select:focus[b-6ymoxgvqft],
    .info-item .info-select.form-select:focus[b-6ymoxgvqft],
    .day-info .info-select:focus[b-6ymoxgvqft],
    .day-info select.info-select:focus[b-6ymoxgvqft],
    .day-info select.info-select.form-select:focus[b-6ymoxgvqft],
    .day-info .info-select.form-select:focus[b-6ymoxgvqft] {
        outline: none !important;
        border-color: var(--bs-primary) !important;
        box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1) !important;
        /* Surcharger le box-shadow Bootstrap */
    }

/* Timeline */
.timeline[b-6ymoxgvqft] {
    position: relative;
    padding-left: 2rem;
}

.timeline[b-6ymoxgvqft]::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--bs-primary) 0%, var(--gscv-orange) 100%);
}

/* Period Card */
.period-card[b-6ymoxgvqft] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

    .period-card:hover[b-6ymoxgvqft] {
        transform: translateX(5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .period-card[b-6ymoxgvqft]::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 1.5rem;
        width: 16px;
        height: 16px;
        background: white;
        border: 3px solid var(--bs-primary);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(52, 95, 109, 0.15);
    }

    .period-card.completed[b-6ymoxgvqft]::before {
        background: var(--bs-success);
        border-color: var(--bs-success);
    }

.period-header[b-6ymoxgvqft] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.period-title[b-6ymoxgvqft] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
}

.period-time[b-6ymoxgvqft] {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.period-actions[b-6ymoxgvqft] {
    display: flex;
    gap: 0.5rem;
}

.btn-icon[b-6ymoxgvqft] {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: var(--muted-foreground);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-icon:hover[b-6ymoxgvqft] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
        background: rgba(52, 95, 109, 0.1);
    }

/* Form Grid */
.form-grid[b-6ymoxgvqft] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-6ymoxgvqft] {
    display: flex;
    flex-direction: column;
}

.form-label[b-6ymoxgvqft] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-control[b-6ymoxgvqft],
.form-select[b-6ymoxgvqft] {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--foreground);
}

    .form-control:focus[b-6ymoxgvqft],
    .form-select:focus[b-6ymoxgvqft] {
        outline: none;
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(52, 95, 109, 0.1);
    }

/* Emoji Selector */
.emoji-selector[b-6ymoxgvqft] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.emoji-option[b-6ymoxgvqft] {
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

    .emoji-option:hover[b-6ymoxgvqft] {
        transform: scale(1.1);
        background: rgba(52, 95, 109, 0.05);
    }

    .emoji-option.selected[b-6ymoxgvqft] {
        border-color: var(--bs-primary);
        background: rgba(52, 95, 109, 0.1);
    }

/* Collapsed Content */
.collapsed-content[b-6ymoxgvqft] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsed-content.expanded[b-6ymoxgvqft] {
    max-height: 2000px;
}

/* Period Summary */
.period-summary[b-6ymoxgvqft] {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
}

/* Add Period Button */
.add-period-btn[b-6ymoxgvqft] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gscv-orange) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(52, 95, 109, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .add-period-btn:hover[b-6ymoxgvqft] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(52, 95, 109, 0.35);
    }

/* Save Bar Spacer */
.save-bar-spacer[b-6ymoxgvqft] {
    height: 100px;
}

/* Save Bar */
.save-bar[b-6ymoxgvqft] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
}

.btn-save[b-6ymoxgvqft] {
    background: linear-gradient(135deg, var(--bs-success) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    display: inline-flex;
    align-items: center;
}

    .btn-save:hover[b-6ymoxgvqft] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    }

.btn-cancel[b-6ymoxgvqft] {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-cancel:hover[b-6ymoxgvqft] {
        background: #4b5563;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .main-container[b-6ymoxgvqft] {
        padding: 1rem;
    }

    .day-header[b-6ymoxgvqft] {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .day-title[b-6ymoxgvqft] {
        font-size: 1.5rem;
    }

    .day-info[b-6ymoxgvqft] {
        flex-direction: column;
        gap: 1rem;
    }

    .info-item[b-6ymoxgvqft] {
        min-width: 100%;
    }

    .timeline[b-6ymoxgvqft] {
        padding-left: 1.5rem;
    }

    .period-card[b-6ymoxgvqft] {
        padding: 1rem;
    }

    .form-grid[b-6ymoxgvqft] {
        grid-template-columns: 1fr;
    }

    .save-bar[b-6ymoxgvqft] {
        flex-direction: column;
        padding: 1rem;
    }

    .btn-save[b-6ymoxgvqft],
    .btn-cancel[b-6ymoxgvqft] {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile compact (max-width: 600px) */
@media (max-width: 600px) {
    .saisie-journaliere-page[b-6ymoxgvqft] {
        padding-bottom: 120px;
    }

    .main-container[b-6ymoxgvqft] {
        padding: 0.75rem !important;
    }

    .day-header[b-6ymoxgvqft] {
        padding: 1rem !important;
        border-radius: 16px !important;
    }

    .day-header-top[b-6ymoxgvqft] {
        flex-direction: column;
        align-items: flex-start;
    }

    .day-title[b-6ymoxgvqft] {
        font-size: 1.25rem !important;
    }

    .btn-back[b-6ymoxgvqft] {
        width: 100%;
        justify-content: center;
    }

    .timeline[b-6ymoxgvqft] {
        padding-left: 1rem !important;
    }

    .timeline[b-6ymoxgvqft]::before {
        left: 0.25rem;
        width: 2px;
    }

    .period-card[b-6ymoxgvqft] {
        padding: 1rem !important;
        border-radius: 12px !important;
    }

    .period-card[b-6ymoxgvqft]::before {
        left: -1rem;
        width: 12px;
        height: 12px;
    }

    .period-title[b-6ymoxgvqft] {
        font-size: 1.1rem !important;
    }

    .period-header[b-6ymoxgvqft] {
        flex-direction: column;
        align-items: flex-start;
    }

    .period-actions[b-6ymoxgvqft] {
        width: 100%;
        justify-content: flex-end;
    }

    .form-grid[b-6ymoxgvqft] {
        gap: 0.75rem;
    }

    .emoji-selector[b-6ymoxgvqft] {
        gap: 0.25rem;
    }

    .emoji-option[b-6ymoxgvqft] {
        font-size: 1.5rem;
        padding: 0.375rem;
    }

    .add-period-btn[b-6ymoxgvqft] {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .save-bar[b-6ymoxgvqft] {
        padding: 0.75rem !important;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-save[b-6ymoxgvqft],
    .btn-cancel[b-6ymoxgvqft] {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}
/* _content/Spectrometre/Components/Layout/AuthenticatedLayout.razor.rz.scp.css */
/* Authenticated Layout Styles - Sidebar Layout */

.authenticated-layout[b-hq6wnu6u3w] {
    display: flex;
    min-height: 100vh;
    background: var(--background);
}

/* Sidebar */
.sidebar-auth[b-hq6wnu6u3w] {
    width: 280px;
    background: linear-gradient(180deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    color: white;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: width 0.3s ease;
}

    /* Sidebar fermé par défaut */
    .sidebar-auth.collapsed[b-hq6wnu6u3w] {
        width: 80px;
    }

        /* HOVER sur le sidebar collapsed pour l'ouvrir temporairement */
        .sidebar-auth.collapsed:hover[b-hq6wnu6u3w] {
            width: 280px;
        }

        /* Masquer les textes quand collapsed (sauf au hover) */
        .sidebar-auth.collapsed .logo-text[b-hq6wnu6u3w],
        .sidebar-auth.collapsed .user-info[b-hq6wnu6u3w],
        .sidebar-auth.collapsed .nav-section-title[b-hq6wnu6u3w],
        .sidebar-auth.collapsed .nav-item-auth span:not(.nav-icon)[b-hq6wnu6u3w],
        .sidebar-auth.collapsed .progress-sidebar[b-hq6wnu6u3w],
        .sidebar-auth.collapsed .logout-button span:not(.nav-icon)[b-hq6wnu6u3w] {
            display: none;
        }

        /* Afficher les textes au hover du sidebar collapsed */
        .sidebar-auth.collapsed:hover .logo-text[b-hq6wnu6u3w],
        .sidebar-auth.collapsed:hover .user-info[b-hq6wnu6u3w],
        .sidebar-auth.collapsed:hover .nav-section-title[b-hq6wnu6u3w],
        .sidebar-auth.collapsed:hover .nav-item-auth span:not(.nav-icon)[b-hq6wnu6u3w],
        .sidebar-auth.collapsed:hover .progress-sidebar[b-hq6wnu6u3w],
        .sidebar-auth.collapsed:hover .logout-button span:not(.nav-icon)[b-hq6wnu6u3w] {
            display: block;
        }

        .sidebar-auth.collapsed .sidebar-logo[b-hq6wnu6u3w] {
            justify-content: center;
        }

        .sidebar-auth.collapsed:hover .sidebar-logo[b-hq6wnu6u3w] {
            justify-content: flex-start;
        }

.sidebar-header[b-hq6wnu6u3w] {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: padding 0.3s ease;
}

/* Réduire le padding horizontal quand collapsed pour centrer le logo */
.sidebar-auth.collapsed .sidebar-header[b-hq6wnu6u3w] {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar-auth.collapsed:hover .sidebar-header[b-hq6wnu6u3w] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.sidebar-logo[b-hq6wnu6u3w] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: justify-content 0.3s ease, gap 0.3s ease;
}

.sidebar-auth.collapsed .sidebar-logo[b-hq6wnu6u3w] {
    gap: 0;
}

.logo-icon[b-hq6wnu6u3w] {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 auto;
}

/* Quand le sidebar est ouvert, ne plus centrer avec margin auto */
.sidebar-auth:not(.collapsed) .logo-icon[b-hq6wnu6u3w],
.sidebar-auth.collapsed:hover .logo-icon[b-hq6wnu6u3w] {
    margin: 0;
}

.logo-text[b-hq6wnu6u3w] {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.user-info[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    opacity: 0.9;
    white-space: nowrap;
}

.sidebar-nav[b-hq6wnu6u3w] {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-section[b-hq6wnu6u3w] {
    margin-bottom: 2rem;
}

.nav-section-title[b-hq6wnu6u3w] {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}

/* Augmenter la spécificité pour surcharger les styles globaux */
/* Cibler explicitement les <a> générés par NavLink */
/* EXCLUSION des sous-items pour appliquer des styles différents */
.sidebar-auth a:not(.nav-sub-item)[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:not(.nav-sub-item)[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:not(.nav-sub-item)[b-hq6wnu6u3w],
.sidebar-auth NavLink.nav-item-auth:not(.nav-sub-item)[b-hq6wnu6u3w],
.sidebar-auth .sidebar-nav a:not(.nav-sub-item)[b-hq6wnu6u3w],
.sidebar-auth .sidebar-nav .nav-item-auth:not(.nav-sub-item)[b-hq6wnu6u3w] {
    padding: 0.875rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    transition: all 0.2s ease !important;
    /* Distinction visuelle : bordure gauche plus épaisse pour les items principaux */
    border-left: 3px solid transparent !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    white-space: nowrap !important;
    min-height: 48px !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    position: relative !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* CORRECTION DU GAP POUR COLLAPSED - Spécificité plus haute */
.sidebar-auth.collapsed .nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed a.nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed NavLink.nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed .nav-group-header[b-hq6wnu6u3w] {
    gap: 0 !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* RESTAURATION DU GAP AU HOVER - Spécificité plus haute */
.sidebar-auth.collapsed:hover .nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed:hover a.nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed:hover NavLink.nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth.collapsed:hover .nav-group-header[b-hq6wnu6u3w] {
    gap: 0.875rem !important;
    justify-content: flex-start !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Forcer la couleur blanche pour tous les états des NavLink (<a>) avec haute spécificité */
.sidebar-auth a:visited[b-hq6wnu6u3w],
.sidebar-auth a:link[b-hq6wnu6u3w],
.sidebar-auth a:active[b-hq6wnu6u3w],
.sidebar-auth a:hover[b-hq6wnu6u3w],
.sidebar-auth a.active[b-hq6wnu6u3w],
.sidebar-auth a:focus[b-hq6wnu6u3w],
.sidebar-auth a:focus-visible[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:visited[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:link[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:active[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:hover[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth.active[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:focus[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:focus-visible[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:visited[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:link[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:active[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:hover[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth.active[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:focus[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:focus-visible[b-hq6wnu6u3w] {
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    background: transparent !important;
}

/* S'assurer que tous les spans de texte restent blancs et sans soulignement */
.sidebar-auth .nav-item-auth > span:not(.nav-icon):not(.nav-group-caret)[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth > span:not(.nav-icon):not(.nav-group-caret)[b-hq6wnu6u3w] {
    color: white !important;
    flex: 1;
    line-height: 1.4;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

/* Hover et active pour les items principaux (excluant les sous-items) */
.sidebar-auth a:not(.nav-sub-item):hover[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:not(.nav-sub-item):hover[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:not(.nav-sub-item):hover[b-hq6wnu6u3w] {
    background: rgba(255,255,255,0.12) !important;
    border-left-color: white !important;
    border-left-width: 3px !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
}

.sidebar-auth a:not(.nav-sub-item).active[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth:not(.nav-sub-item).active[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth:not(.nav-sub-item).active[b-hq6wnu6u3w] {
    background: rgba(255,255,255,0.18) !important;
    border-left-color: white !important;
    border-left-width: 3px !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    font-weight: 600 !important;
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    /* Indicateur visuel pour l'item actif principal */
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.15) !important;
}

/* Supprimer TOUS les soulignements et bordures inférieures - Règles globales pour tous les <a> */
.sidebar-auth a[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth[b-hq6wnu6u3w],
.sidebar-auth .nav-item-auth *[b-hq6wnu6u3w],
.sidebar-auth a.nav-item-auth *[b-hq6wnu6u3w],
.sidebar-auth a *[b-hq6wnu6u3w],
.sidebar-auth .nav-icon[b-hq6wnu6u3w],
.sidebar-auth .nav-icon *[b-hq6wnu6u3w],
.sidebar-auth .nav-icon i[b-hq6wnu6u3w],
.sidebar-auth .nav-icon i[b-hq6wnu6u3w]::before,
.sidebar-auth .nav-icon i[b-hq6wnu6u3w]::after {
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Supprimer les pseudo-éléments qui pourraient créer des soulignements */
.sidebar-auth a[b-hq6wnu6u3w]::after,
.sidebar-auth a[b-hq6wnu6u3w]::before,
.sidebar-auth .nav-item-auth[b-hq6wnu6u3w]::after,
.sidebar-auth .nav-item-auth[b-hq6wnu6u3w]::before,
.sidebar-auth a.nav-item-auth[b-hq6wnu6u3w]::after,
.sidebar-auth a.nav-item-auth[b-hq6wnu6u3w]::before,
.sidebar-auth a:focus[b-hq6wnu6u3w]::after,
.sidebar-auth a:focus[b-hq6wnu6u3w]::before,
.sidebar-auth .nav-item-auth:focus[b-hq6wnu6u3w]::after,
.sidebar-auth .nav-item-auth:focus[b-hq6wnu6u3w]::before,
.sidebar-auth a.nav-item-auth:focus[b-hq6wnu6u3w]::after,
.sidebar-auth a.nav-item-auth:focus[b-hq6wnu6u3w]::before {
    display: none !important;
    content: none !important;
    text-decoration: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

.sidebar-auth .nav-icon[b-hq6wnu6u3w] {
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.125rem !important;
    line-height: 1 !important;
    color: inherit;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

    /* S'assurer que les icônes à l'intérieur sont bien centrées et sans soulignement */
    .sidebar-auth .nav-icon i[b-hq6wnu6u3w] {
        display: block !important;
        line-height: 1 !important;
        font-size: inherit !important;
        width: 100% !important;
        text-align: center !important;
        text-decoration: none !important;
        text-underline-offset: 0 !important;
        text-decoration-line: none !important;
        border-bottom: none !important;
    }

/* Icônes dans les sous-items - plus petites et blanches */
.sidebar-auth .nav-sub-item .nav-icon[b-hq6wnu6u3w] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 0.875rem !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* Nav icon accent colors */
.nav-icon-primary[b-hq6wnu6u3w] {
    color: #ffff;
}

.nav-icon-teal[b-hq6wnu6u3w] {
    color: var(--gscv-teal);
}

.nav-icon-green[b-hq6wnu6u3w] {
    color: var(--gscv-green);
}

.nav-icon-orange[b-hq6wnu6u3w] {
    color: hsl(18, 80%, 90%);
}

.nav-icon-gold[b-hq6wnu6u3w] {
    color: #facc15;
}

.nav-icon-muted[b-hq6wnu6u3w] {
    color: rgba(255,255,255,0.85);
}

/* Nav groups & submenus */
.nav-group[b-hq6wnu6u3w] {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    /* S'assurer que le nav-group contient bien le sous-menu */
    display: block;
    overflow: visible;
}

.sidebar-auth .nav-group-header[b-hq6wnu6u3w] {
    cursor: pointer !important;
    user-select: none !important;
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
    min-height: 48px !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: white !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.nav-group-caret[b-hq6wnu6u3w] {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.9;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    min-width: 16px;
    height: 16px;
    line-height: 1;
    color: white;
}

    .nav-group-caret i[b-hq6wnu6u3w] {
        display: block;
        line-height: 1;
    }

/* Masquer la flèche quand sidebar collapsed */
.sidebar-auth.collapsed .nav-group-caret[b-hq6wnu6u3w] {
    display: none;
}

/* Afficher la flèche au hover du sidebar collapsed */
.sidebar-auth.collapsed:hover .nav-group-caret[b-hq6wnu6u3w] {
    display: block;
}

.nav-submenu[b-hq6wnu6u3w] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* Forcer l'accélération GPU pour éviter le tremblement */
    transform: translateZ(0);
    will-change: max-height;
    position: relative;
    z-index: 2;
    /* Respecter les marges et padding du conteneur parent .nav-group */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* S'assurer que le sous-menu est bien contenu dans le nav-group */
    display: block;
    clear: both;
}

.sidebar-auth .nav-sub-item[b-hq6wnu6u3w],
.sidebar-auth a.nav-sub-item[b-hq6wnu6u3w] {
    /* Aligner avec le padding-left du nav-group-header (1.5rem) + indentation supplémentaire (1.5rem) = 3rem */
    padding: 0.75rem 1.5rem 0.75rem 3.5rem !important;
    font-size: 0.875rem !important;
    /* Distinction visuelle : fond légèrement différent et plus sombre */
    background: rgba(0, 0, 0, 0.12) !important;
    transform: translateZ(0) !important;
    cursor: pointer !important;
    position: relative !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    min-height: 40px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    transition: all 0.2s ease !important;
    /* Distinction visuelle : bordure gauche plus fine et couleur différente */
    border-left: 2px solid rgba(255, 255, 255, 0.2) !important;
    /* Respecter la largeur du conteneur parent et les marges du nav-group */
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    /* S'assurer que les sous-items sont bien alignés avec le header */
    clear: both;
    /* Distinction visuelle : légère marge à gauche pour créer un effet d'indentation */
    margin-left: 0.5rem !important;
    border-radius: 0 8px 8px 0 !important;
}

    /* Forcer la couleur blanche pour tous les états des sous-items */
    .sidebar-auth .nav-sub-item:visited[b-hq6wnu6u3w],
    .sidebar-auth .nav-sub-item:link[b-hq6wnu6u3w],
    .sidebar-auth .nav-sub-item:active[b-hq6wnu6u3w],
    .sidebar-auth .nav-sub-item:hover[b-hq6wnu6u3w],
    .sidebar-auth .nav-sub-item.active[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item:visited[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item:link[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item:active[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item:hover[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item.active[b-hq6wnu6u3w] {
        color: white !important;
        text-decoration: none !important;
    }

    /* S'assurer que tous les enfants héritent de la couleur blanche */
    .sidebar-auth .nav-sub-item span:not(.nav-icon)[b-hq6wnu6u3w],
    .sidebar-auth .nav-sub-item i[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item span:not(.nav-icon)[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item i[b-hq6wnu6u3w] {
        color: white !important;
    }

    /* Hover subtil sur les sous-items pour le feedback - Distinction visuelle */
    .sidebar-auth .nav-sub-item:hover[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item:hover[b-hq6wnu6u3w] {
        background: rgba(255, 255, 255, 0.15) !important;
        border-left-color: rgba(255, 255, 255, 0.6) !important;
        color: white !important;
        /* Légère transformation pour le feedback */
        transform: translateX(2px) !important;
    }

    /* Sous-items actifs - Distinction visuelle */
    .sidebar-auth .nav-sub-item.active[b-hq6wnu6u3w],
    .sidebar-auth a.nav-sub-item.active[b-hq6wnu6u3w] {
        background: rgba(255, 255, 255, 0.2) !important;
        border-left-color: white !important;
        border-left-width: 3px !important;
        color: white !important;
        font-weight: 500 !important;
        /* Indicateur visuel pour l'item actif */
        box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1) !important;
    }

/* IMPORTANT: Les sous-menus ne s'ouvrent PAS au hover sur le header */
/* Mais ils restent ouverts une fois la classe .open ajoutée */
.nav-group:not(.open):hover .nav-submenu[b-hq6wnu6u3w] {
    max-height: 0 !important;
}

/* Désactiver pointer-events sur les sous-menus fermés */
.nav-group:not(.open) .nav-submenu[b-hq6wnu6u3w] {
    pointer-events: none;
}

/* Ouverture au clic uniquement */
.nav-group.open .nav-submenu[b-hq6wnu6u3w] {
    max-height: 1000px;
    pointer-events: auto;
    /* Respecter les marges et padding du conteneur parent .nav-group */
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.nav-group.open .nav-group-caret[b-hq6wnu6u3w] {
    transform: rotate(90deg);
}

/* Quand le sidebar est collapsed ET non-hover, masquer les sous-menus */
.sidebar-auth.collapsed:not(:hover) .nav-submenu[b-hq6wnu6u3w] {
    display: none;
}

/* Au hover du sidebar collapsed, permettre l'ouverture des sous-menus */
.sidebar-auth.collapsed:hover .nav-group.open .nav-submenu[b-hq6wnu6u3w] {
    display: block;
    max-height: 1000px;
}

/* Logout Section (Paramètres + Déconnexion, toujours visibles) */
.logout-section[b-hq6wnu6u3w] {
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.logout-section-item[b-hq6wnu6u3w] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 0.875rem 1.5rem !important;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.logout-section-item:hover[b-hq6wnu6u3w] {
    background: rgba(255,255,255,0.1);
    border-left-color: white;
    color: white;
}

.logout-section-item.active[b-hq6wnu6u3w] {
    border-left-color: white;
    background: rgba(255,255,255,0.08);
}

.sidebar-auth.collapsed .logout-section-item span:not(.nav-icon)[b-hq6wnu6u3w] {
    display: none;
}

.sidebar-auth.collapsed:hover .logout-section-item span:not(.nav-icon)[b-hq6wnu6u3w] {
    display: block;
}

.sidebar-auth.collapsed .logout-section-item[b-hq6wnu6u3w] {
    gap: 0 !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.sidebar-auth.collapsed:hover .logout-section-item[b-hq6wnu6u3w] {
    gap: 0.875rem !important;
    justify-content: flex-start !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.logout-form[b-hq6wnu6u3w] {
    margin: 0;
    width: 100%;
}

.logout-button[b-hq6wnu6u3w] {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0.875rem 1.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.875rem !important;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    font-size: inherit;
    font-family: inherit;
    white-space: nowrap;
}

/* Correction du gap pour logout-button collapsed */
.sidebar-auth.collapsed .logout-button[b-hq6wnu6u3w] {
    gap: 0 !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.sidebar-auth.collapsed:hover .logout-button[b-hq6wnu6u3w] {
    gap: 0.875rem !important;
    justify-content: flex-start !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.logout-button:hover[b-hq6wnu6u3w] {
    background: rgba(255,255,255,0.1);
    border-left-color: white;
    color: white;
}

.logout-button:active[b-hq6wnu6u3w] {
    background: rgba(255,255,255,0.15);
}

.progress-sidebar[b-hq6wnu6u3w] {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: padding 0.3s ease;
}

/* Réduire le padding horizontal quand collapsed */
.sidebar-auth.collapsed .progress-sidebar[b-hq6wnu6u3w] {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar-auth.collapsed:hover .progress-sidebar[b-hq6wnu6u3w] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.progress-label[b-hq6wnu6u3w] {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar-sidebar[b-hq6wnu6u3w] {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill-sidebar[b-hq6wnu6u3w] {
    height: 100%;
    background: white;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text[b-hq6wnu6u3w] {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Main Content */
.main-content-auth[b-hq6wnu6u3w] {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: var(--background);
    transition: margin-left 0.3s ease;
}

.sidebar-auth.collapsed ~ .main-content-auth[b-hq6wnu6u3w] {
    margin-left: 80px;
}

/* Top Bar */
.topbar-auth[b-hq6wnu6u3w] {
    background: transparent;
    padding: 0;
}

.topbar-actions[b-hq6wnu6u3w] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Notification Button */
.btn-icon-notification[b-hq6wnu6u3w] {
    width: 42px;
    height: 42px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

    .btn-icon-notification:hover[b-hq6wnu6u3w] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
        transform: translateY(-2px);
    }

.notification-badge[b-hq6wnu6u3w] {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    border: 2px solid white;
}

/* User Menu */
.topbar-user[b-hq6wnu6u3w] {
    position: relative;
}

.topbar-user-btn[b-hq6wnu6u3w] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .topbar-user-btn:hover[b-hq6wnu6u3w] {
        border-color: var(--bs-primary);
        transform: translateY(-2px);
    }

.topbar-avatar[b-hq6wnu6u3w] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.topbar-username[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.topbar-user-role[b-hq6wnu6u3w] {
    font-size: 0.75rem;
    color: #64748b;
}

.topbar-user-menu[b-hq6wnu6u3w] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.topbar-user.is-open .topbar-user-menu[b-hq6wnu6u3w] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.topbar-user-menu-item[b-hq6wnu6u3w] {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

    .topbar-user-menu-item:last-child[b-hq6wnu6u3w] {
        border-bottom: none;
    }

    .topbar-user-menu-item:hover[b-hq6wnu6u3w] {
        background: #f8fafc;
        color: var(--bs-primary);
    }

    .topbar-user-menu-item i[b-hq6wnu6u3w] {
        font-size: 1rem;
    }

.logout-inline-form[b-hq6wnu6u3w] {
    margin: 0;
    padding: 0;
}

    .logout-inline-form button[b-hq6wnu6u3w] {
        width: 100%;
        background: none;
        border: none;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #475569;
        cursor: pointer;
        text-align: left;
        font-size: inherit;
        font-family: inherit;
    }

        .logout-inline-form button:hover[b-hq6wnu6u3w] {
            background: #f8fafc;
            color: var(--bs-primary);
        }

/* Profile Banner */
.profile-banner[b-hq6wnu6u3w] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.profile-info[b-hq6wnu6u3w] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar-large[b-hq6wnu6u3w] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
}

.profile-details h2[b-hq6wnu6u3w] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.profile-subtitle[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-box-banner[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 250px;
}

.progress-label-banner[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.progress-bar-banner[b-hq6wnu6u3w] {
    height: 12px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
}

.progress-fill-banner[b-hq6wnu6u3w] {
    height: 100%;
    background: linear-gradient(90deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-percentage[b-hq6wnu6u3w] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

/* Form Elements */
.form-label-auth[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.input-modern[b-hq6wnu6u3w],
.select-modern[b-hq6wnu6u3w] {
    border: 2px solid #e2e8f0;
    background: white;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
    width: 100%;
}

    .input-modern:focus[b-hq6wnu6u3w],
    .select-modern:focus[b-hq6wnu6u3w] {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(234, 119, 61, 0.1);
        outline: none;
    }

.input-group-modern[b-hq6wnu6u3w] {
    display: flex;
}

.input-group-text-modern[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-right: none;
    padding: 0.625rem 0.875rem;
    border-radius: 8px 0 0 8px;
    color: #64748b;
}

.input-group-modern .input-modern[b-hq6wnu6u3w] {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* Action Cards */
.action-cards-grid[b-hq6wnu6u3w] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.action-card[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

    .action-card:hover[b-hq6wnu6u3w] {
        border-color: var(--bs-primary);
        background: white;
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }

.action-icon[b-hq6wnu6u3w] {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, hsl(18, 80%, 54%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
}

.action-title[b-hq6wnu6u3w] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.action-description[b-hq6wnu6u3w] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.btn-action[b-hq6wnu6u3w] {
    width: 100%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    padding: 0.625rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

    .btn-action:hover[b-hq6wnu6u3w] {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

/* Table */
.table-modern[b-hq6wnu6u3w] {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

    .table-modern table[b-hq6wnu6u3w] {
        margin: 0;
        width: 100%;
    }

    .table-modern thead[b-hq6wnu6u3w] {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

        .table-modern thead th[b-hq6wnu6u3w] {
            border: none;
            border-bottom: 2px solid #e2e8f0;
            padding: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #475569;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

    .table-modern tbody td[b-hq6wnu6u3w] {
        border: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 1rem;
        vertical-align: middle;
    }

    .table-modern tbody tr:last-child td[b-hq6wnu6u3w] {
        border-bottom: none;
    }

    .table-modern tbody tr:hover[b-hq6wnu6u3w] {
        background: #f8fafc;
    }

.badge-modern[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.row-number[b-hq6wnu6u3w] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Action Bar */
.action-bar[b-hq6wnu6u3w] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.btn-modern[b-hq6wnu6u3w] {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-modern[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(234, 119, 61, 0.3);
}

    .btn-primary-modern:hover[b-hq6wnu6u3w] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(234, 119, 61, 0.4);
        color: white;
    }

.btn-secondary-modern[b-hq6wnu6u3w] {
    background: white;
    color: #475569;
    border: 2px solid #e2e8f0;
}

    .btn-secondary-modern:hover[b-hq6wnu6u3w] {
        border-color: #cbd5e1;
        background: #f8fafc;
    }

.btn-add-modern[b-hq6wnu6u3w] {
    background: linear-gradient(135deg, var(--gscv-teal) 0%, hsl(178, 45%, 45%) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(178, 45%, 40%, 0.3);
}

    .btn-add-modern:hover[b-hq6wnu6u3w] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(178, 45%, 40%, 0.4);
        color: white;
    }

@media (max-width: 768px) {
    .sidebar-auth[b-hq6wnu6u3w] {
        transform: translateX(-100%);
    }

        .sidebar-auth.mobile-open[b-hq6wnu6u3w] {
            transform: translateX(0);
        }

            /* Sur mobile, forcer l'affichage complet */
            .sidebar-auth.mobile-open[b-hq6wnu6u3w],
            .sidebar-auth.mobile-open.collapsed[b-hq6wnu6u3w] {
                width: 280px !important;
            }

                /* Ré-afficher tous les textes sur mobile */
                .sidebar-auth.mobile-open .logo-text[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .user-info[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .nav-section-title[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .nav-item-auth span:not(.nav-icon)[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .progress-sidebar[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .logout-button span:not(.nav-icon)[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .logout-section-item span:not(.nav-icon)[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .nav-group-caret[b-hq6wnu6u3w] {
                    opacity: 1 !important;
                    visibility: visible !important;
                }

                .sidebar-auth.mobile-open .nav-item-auth[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .logout-button[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .logout-section-item[b-hq6wnu6u3w],
                .sidebar-auth.mobile-open .sidebar-logo[b-hq6wnu6u3w] {
                    justify-content: flex-start;
                }

                .sidebar-auth.mobile-open .nav-submenu[b-hq6wnu6u3w] {
                    display: block !important;
                }

    .main-content-auth[b-hq6wnu6u3w] {
        margin-left: 0;
    }

    .sidebar-auth.collapsed ~ .main-content-auth[b-hq6wnu6u3w] {
        margin-left: 0;
    }

    .mobile-menu-btn[b-hq6wnu6u3w] {
        display: block !important;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 999;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, hsl(18, 80%, 40%) 0%, var(--bs-primary) 100%);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 1.25rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        cursor: pointer;
    }

    .mobile-overlay[b-hq6wnu6u3w] {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

        .mobile-overlay.active[b-hq6wnu6u3w] {
            display: block !important;
        }

    .profile-banner[b-hq6wnu6u3w] {
        flex-direction: column;
        text-align: center;
    }

    .progress-box-banner[b-hq6wnu6u3w] {
        width: 100%;
    }

    .action-cards-grid[b-hq6wnu6u3w] {
        grid-template-columns: 1fr;
    }

    .action-bar[b-hq6wnu6u3w] {
        flex-direction: column;
    }
}

.mobile-menu-btn[b-hq6wnu6u3w] {
    display: none;
}
/* _content/Spectrometre/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ki40zfv8tb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ki40zfv8tb] {
    flex: 1;
}

.sidebar[b-ki40zfv8tb] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ki40zfv8tb] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ki40zfv8tb]  a, .top-row[b-ki40zfv8tb]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ki40zfv8tb]  a:hover, .top-row[b-ki40zfv8tb]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ki40zfv8tb]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ki40zfv8tb] {
        justify-content: space-between;
    }

    .top-row[b-ki40zfv8tb]  a, .top-row[b-ki40zfv8tb]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ki40zfv8tb] {
        flex-direction: row;
    }

    .sidebar[b-ki40zfv8tb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ki40zfv8tb] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ki40zfv8tb]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ki40zfv8tb], article[b-ki40zfv8tb] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ki40zfv8tb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ki40zfv8tb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Spectrometre/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-0yfj7q7ox3] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-0yfj7q7ox3] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-0yfj7q7ox3] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-0yfj7q7ox3] {
    font-size: 1.1rem;
}

.bi[b-0yfj7q7ox3] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-0yfj7q7ox3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-0yfj7q7ox3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-0yfj7q7ox3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-0yfj7q7ox3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-0yfj7q7ox3]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-0yfj7q7ox3]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-0yfj7q7ox3]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-0yfj7q7ox3] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-0yfj7q7ox3] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-0yfj7q7ox3] {
        display: none;
    }

    .nav-scrollable[b-0yfj7q7ox3] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
