/* /Components/Layout/AuthenticatedLayout.razor.rz.scp.css */
/* ============================================================================
   Authenticated Layout - Layout pages authentifi�es avec Sidebar
   ============================================================================ */

.authenticated-layout[b-13dxikg3sb] {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* Espace pour le header fixe */
}

/* Conteneur app (avec sidebar) */
.app-container[b-13dxikg3sb] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
}

/* Avec sidebar */
.app-container.with-sidebar[b-13dxikg3sb] {
    margin-left: 80px; /* Largeur de la sidebar r�duite */
    transition: margin-left 0.3s ease;
    min-height: calc(100vh - 80px);
}

/* Contenu principal */
.main-content[b-13dxikg3sb] {
    flex: 1;
    padding: 2rem 0;
    background-color: #f5f5f5;
}

/* Container fluid */
.main-content .container-fluid[b-13dxikg3sb] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Page content authenticated */
.authenticated-content[b-13dxikg3sb] {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    min-height: 500px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb */
.breadcrumb[b-13dxikg3sb] {
    background-color: transparent;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
}

.breadcrumb-item + .breadcrumb-item[b-13dxikg3sb]::before {
    content: "�";
    padding-right: 0.5rem;
}

.breadcrumb-item a[b-13dxikg3sb] {
    color: #E31E24;
    text-decoration: none;
}

.breadcrumb-item a:hover[b-13dxikg3sb] {
    text-decoration: underline;
}

.breadcrumb-item.active[b-13dxikg3sb] {
    color: #6c757d;
}

/* Flash messages */
#flash-messages[b-13dxikg3sb] {
    min-height: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .authenticated-layout[b-13dxikg3sb] {
        padding-top: 70px; /* Header plus petit sur mobile */
    }

    /* Sidebar r�duite � 5px sur mobile (ligne fine) */
    .app-container.with-sidebar[b-13dxikg3sb] {
        margin-left: 0;
        min-height: calc(100vh - 70px);
    }

    .main-content[b-13dxikg3sb] {
        padding: 1rem 0;
    }

    .main-content .container-fluid[b-13dxikg3sb] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .authenticated-content[b-13dxikg3sb] {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .authenticated-content[b-13dxikg3sb] {
        padding: 1rem;
        border-radius: 0;
    }
}

/* Animation de chargement de page */
@keyframes fadeIn-b-13dxikg3sb {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.authenticated-content[b-13dxikg3sb] {
    animation: fadeIn-b-13dxikg3sb 0.3s ease;
}
/* /Components/Layout/DepartementHeader.razor.rz.scp.css */
/* ============================================================================
   DepartementHeader - Header blanc avec logo d�partement
   ============================================================================ */

.departement-header[b-kakevaw3ud] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: left 0.3s ease;
}

/* D�calage pour AuthenticatedLayout (avec sidebar) */
.authenticated-layout .departement-header[b-kakevaw3ud] {
    left: 80px; /* Largeur de la sidebar r�duite */
}

.departement-header-content[b-kakevaw3ud] {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.departement-logo-link[b-kakevaw3ud] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.departement-logo-link:hover[b-kakevaw3ud] {
    transform: scale(1.05);
}

.departement-logo[b-kakevaw3ud] {
    height: 50px;
    width: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .departement-header[b-kakevaw3ud] {
        height: 70px;
    }
    
    .authenticated-layout .departement-header[b-kakevaw3ud] {
        left: 70px; /* Sidebar reste � 80px sur mobile */
    }
    
    .departement-header-content[b-kakevaw3ud] {
        padding: 0 1rem;
    }
    
    .departement-logo[b-kakevaw3ud] {
        height: 40px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================================
   Main Layout - Layout principal sans Sidebar
   ============================================================================ */

.main-layout[b-lclsp47rmb] {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* Espace pour le header fixe */
}

/* Conteneur app (main + footer) */
.app-container[b-lclsp47rmb] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: calc(100vh - 80px);
    width: 100%;
}

/* Contenu principal */
.main-content[b-lclsp47rmb] {
    flex: 1;
    padding: 2rem 0;
    background-color: #f5f5f5;
}

/* Container fluid */
.main-content .container-fluid[b-lclsp47rmb] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Page content */
.page-content[b-lclsp47rmb] {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    min-height: 400px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Toast container */
#toast-container[b-lclsp47rmb] {
    position: fixed;
    top: 100px; /* Sous le header */
    right: 20px;
    z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
    .main-layout[b-lclsp47rmb] {
        padding-top: 70px; /* Header plus petit sur mobile */
    }
    
    .app-container[b-lclsp47rmb] {
        min-height: calc(100vh - 70px);
    }
    
    .main-content[b-lclsp47rmb] {
        padding: 1rem 0;
    }

    .main-content .container-fluid[b-lclsp47rmb] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-content[b-lclsp47rmb] {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-content[b-lclsp47rmb] {
        padding: 1rem;
        border-radius: 0;
    }
}

/* Animation de chargement de page */
@keyframes fadeIn-b-lclsp47rmb {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content[b-lclsp47rmb] {
    animation: fadeIn-b-lclsp47rmb 0.3s ease;
}
/* /Components/Layout/SidebarMenu.razor.rz.scp.css */
/* ============================================================================
   Sidebar Menu - Menu lat�ral avec effet hover (Desktop) et toggle (Mobile)
   Inspir� du projet Partenaires original
   ============================================================================ */

/* Conteneur principal de la sidebar */
.sidebar-menu[b-zg5y1d10my] {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    background-color: #ED1C24;
    color: white;
    transition: width 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    overflow: visible;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}
.sidebar-item:has(.active)[b-zg5y1d10my] {
    background-color: #fff !important;
    border-radius: 0.375rem !important;
}

/* Largeur r�duite (ic�nes seulement) */
.sidebar-menu.collapsed[b-zg5y1d10my] {
    width: 80px;
}

/* Largeur �tendue (ic�nes + texte) */
.sidebar-menu.expanded[b-zg5y1d10my] {
    width: 310px;
}

/* Bouton hamburger pour mobile */
.sidebar-toggle-btn[b-zg5y1d10my] {
    display: none;
    position: fixed;
    top: 0px;
    width: 75px;
    height: 70px;
    background-color: #ED1C24;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* HOVER COMMENT� TEMPORAIREMENT
.sidebar-toggle-btn:hover {
    background-color: #c71a1f;
    transform: scale(1.05);
}
*/

.sidebar-toggle-btn:active[b-zg5y1d10my] {
    transform: scale(0.95);
}

/* Overlay pour mobile */
.sidebar-overlay[b-zg5y1d10my] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Navigation */
.sidebar-nav[b-zg5y1d10my] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* Logo / Brand */
.sidebar-brand[b-zg5y1d10my] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-link[b-zg5y1d10my] {
    display: flex;
    align-items: center;
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0;
    min-height: 50px;
}

/* HOVER COMMENT� TEMPORAIREMENT
.brand-link:hover {
    background-color: white !important;
    color: #ED1C24 !important;
}
*/

.brand-link i[b-zg5y1d10my] {
    font-size: 1.5rem;
    width: 24px;
    min-width: 24px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* HOVER COMMENT� TEMPORAIREMENT
.brand-link:hover i {
    color: #ED1C24 !important;
}
*/

.brand-text[b-zg5y1d10my] {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 1rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white !important;
}

/* HOVER COMMENT� TEMPORAIREMENT
.brand-link:hover .brand-text {
    color: #ED1C24 !important;
}
*/

.sidebar-menu.expanded .brand-text[b-zg5y1d10my] {
    opacity: 1;
}

/* Liste du menu */
.sidebar-menu-list[b-zg5y1d10my] {
    list-style: none;
    padding: 0.5rem 1rem;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

@media (max-width:768px) {
    .sidebar-menu-list[b-zg5y1d10my] {
        margin-top: 70px !important;
    }
}

/* Item du menu */
.sidebar-item[b-zg5y1d10my] {
    margin-bottom: 0.5rem;
    position: relative;
}

/* Lien du menu - Style inspir� de l'ancien */
.sidebar-link[b-zg5y1d10my] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    border-radius: 12px;
    margin: 0;
}

/* HOVER COMMENT� TEMPORAIREMENT
.sidebar-link:hover {
    background-color: white !important;
    color: #ED1C24 !important;
}
*/

.sidebar-link.active[b-zg5y1d10my] {
    background-color: white !important;
    color: #ED1C24 !important;
}

/* Ic�nes - Alignement gauche parfait */
.sidebar-link i[b-zg5y1d10my] {
    font-size: 1.5rem;
    width: 24px;
    min-width: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* HOVER COMMENT� TEMPORAIREMENT
.sidebar-link:hover i,
*/
.sidebar-link.active i[b-zg5y1d10my] {
    color: #ED1C24 !important;
}

/* Texte du lien */
.link-text[b-zg5y1d10my] {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 1rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex: 1;
    color: white;
}

/* HOVER COMMENT� TEMPORAIREMENT
.sidebar-link:hover .link-text,
*/
.sidebar-link.active .link-text[b-zg5y1d10my] {
    color: #ED1C24 !important;
}

.sidebar-menu.expanded .link-text[b-zg5y1d10my] {
    opacity: 1;
}

/* Ic�ne de toggle submenu */
.submenu-toggle[b-zg5y1d10my] {
    font-size: 1rem;
    margin-left: auto;
    margin-right: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* HOVER COMMENT� TEMPORAIREMENT
.sidebar-link:hover .submenu-toggle,
*/
.sidebar-link.active .submenu-toggle[b-zg5y1d10my] {
    color: #ED1C24 !important;
}

.sidebar-menu.expanded .submenu-toggle[b-zg5y1d10my] {
    opacity: 1;
}

.sidebar-item.submenu-open .submenu-toggle[b-zg5y1d10my] {
    transform: rotate(180deg);
}

/* Sous-menu - Style inspir� de l'ancien avec fond blanc */
.sidebar-submenu[b-zg5y1d10my] {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #eeeeee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-item.submenu-open .sidebar-submenu[b-zg5y1d10my] {
    max-height: 500px;
    padding: 0.5rem 0;
}

.sidebar-submenu li[b-zg5y1d10my] {
    padding: 0;
}

.submenu-link[b-zg5y1d10my] {
    display: block;
    padding: 0.75rem 1rem;
    color: #ED1C24 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* HOVER COMMENT� TEMPORAIREMENT
.submenu-link:hover {
    background-color: rgba(237, 28, 36, 0.1);
    color: #ED1C24 !important;
}
*/

.submenu-link.active[b-zg5y1d10my] {
    background-color: rgba(237, 28, 36, 0.15);
    color: #ED1C24 !important;
    font-weight: 600;
}

.submenu-link span[b-zg5y1d10my] {
    color: #ED1C24 !important;
}

/* Item de d�connexion */
.logout-item[b-zg5y1d10my] {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrollbar personnalis�e */
.sidebar-menu-list[b-zg5y1d10my]::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu-list[b-zg5y1d10my]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-menu-list[b-zg5y1d10my]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sidebar-menu-list[b-zg5y1d10my]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   RESPONSIVE - MOBILE
   ============================================================================ */
@media (max-width: 768px) {
    /* Afficher le bouton hamburger */
    .sidebar-toggle-btn[b-zg5y1d10my] {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Menu ferm� : ligne fine de 5px */
    .sidebar-menu.collapsed[b-zg5y1d10my] {
        width: 0px;
        box-shadow: none;
        overflow: hidden;
    }
    
    /* Cacher tout le contenu quand ferm� */
    .sidebar-menu.collapsed .sidebar-nav[b-zg5y1d10my] {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Menu ouvert : pleine largeur (90% ou 300px max) */
    .sidebar-menu.expanded[b-zg5y1d10my] {
        width: min(90vw, 300px);
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.3);
    }
    
    /* Afficher le contenu quand ouvert */
    .sidebar-menu.expanded .sidebar-nav[b-zg5y1d10my] {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Afficher l'overlay quand menu ouvert */
    .sidebar-menu.expanded ~ .sidebar-overlay[b-zg5y1d10my] {
        display: block;
    }
    
    /* D�sactiver l'effet hover sur mobile */
    .sidebar-menu[b-zg5y1d10my] {
        pointer-events: auto;
    }
    
    /* Les textes sont toujours visibles quand le menu est ouvert */
    .sidebar-menu.expanded .brand-text[b-zg5y1d10my],
    .sidebar-menu.expanded .link-text[b-zg5y1d10my],
    .sidebar-menu.expanded .submenu-toggle[b-zg5y1d10my] {
        opacity: 1;
    }
    
    /* Ajuster le header pour la ligne fine */
    .authenticated-layout .departement-header[b-zg5y1d10my] {
        left: 5px;
        transition: left 0.3s ease;
    }
    
    /* Ajuster le contenu principal */
    .app-container.with-sidebar[b-zg5y1d10my] {
        margin-left: 5px;
        transition: margin-left 0.3s ease;
    }
}

/* Animation d'apparition */
@keyframes slideIn-b-zg5y1d10my {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.sidebar-menu[b-zg5y1d10my] {
    animation: slideIn-b-zg5y1d10my 0.3s ease;
}
/* /Components/Pages/Authenticated/ComptePartenaire.razor.rz.scp.css */
/* ============================================================================
   Compte Partenaire - Page d'accueil Dashboard
   ============================================================================ */

/* Conteneur de contenu avec fond */
.content-bg[b-kggv95bfmj] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Alerte En Attente (Pr�inscription) */
.alert-En-Attente[b-kggv95bfmj] {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

/* Fond gris pour affiliation valid�e */
.BackgroundGris[b-kggv95bfmj] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

/* Boutons d'action */
.btn-lg[b-kggv95bfmj] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Ic�nes dans les boutons */
.btn i[b-kggv95bfmj] {
    font-size: 1.2rem;
}

/* Responsive - petits �crans */
@media (max-width: 576px) {
    .content-bg[b-kggv95bfmj] {
        padding: 1rem !important;
    }
    
    .btn-lg[b-kggv95bfmj] {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Section statistiques (pour future impl�mentation) */
.suivi-icons[b-kggv95bfmj] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005c97;
}

/* Cartes statistiques */
.stat-card[b-kggv95bfmj] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover[b-kggv95bfmj] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Titre de section */
h1[b-kggv95bfmj] {
    color: #005c97;
}

/* Lead text */
.lead[b-kggv95bfmj] {
    font-size: 1.1rem;
    color: #6c757d;
}

/* ============================================================================
   FIX: Masquer les barres verticales de la timeline AffiliationTimeline
   ============================================================================ */

/* 
   Surcharge du CSS scop� de AffiliationTimeline.razor.css
   pour masquer les barres verticales sous les cercles (cr��es par ::before)
   UNIQUEMENT sur la page ComptePartenaire
*/

/* Masquer les ::before en mode desktop (timeline horizontale) */
[b-kggv95bfmj] .timeline-step::before {
    display: none !important;
}

/* Masquer aussi en mode responsive */
@media (max-width: 768px) {
    [b-kggv95bfmj] .timeline-step::before {
        display: none !important;
    }
}
/* /Components/Pages/Authenticated/MesInformations.razor.rz.scp.css */
/* Styles pour la page Mes Informations */

.content-bg[b-hy63wm89e2] {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-bg h1[b-hy63wm89e2] {
    color: #005c97;
    font-size: 1.75rem;
    font-weight: 600;
}

.form-label[b-hy63wm89e2] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-control:disabled[b-hy63wm89e2],
.form-control[readonly][b-hy63wm89e2] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.text-danger[b-hy63wm89e2] {
    color: #dc3545 !important;
}

.text-success[b-hy63wm89e2] {
    color: #28a745 !important;
}

.text-warning[b-hy63wm89e2] {
    color: #ffc107 !important;
}

.text-primary[b-hy63wm89e2] {
    color: #005c97 !important;
}

.btn-primary[b-hy63wm89e2] {
    background-color: #005c97;
    border-color: #005c97;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled)[b-hy63wm89e2] {
    background-color: #004275;
    border-color: #004275;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled[b-hy63wm89e2] {
    opacity: 0.65;
    cursor: not-allowed;
}

.alert[b-hy63wm89e2] {
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success[b-hy63wm89e2] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger[b-hy63wm89e2] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning[b-hy63wm89e2] {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.spinner-border[b-hy63wm89e2] {
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-hy63wm89e2 0.75s linear infinite;
}

@keyframes spinner-border-b-hy63wm89e2 {
    to {
        transform: rotate(360deg);
    }
}

.form-check-input[b-hy63wm89e2] {
    cursor: pointer;
}

.form-check-input:disabled[b-hy63wm89e2] {
    cursor: not-allowed;
    opacity: 0.5;
}

.form-check-label[b-hy63wm89e2] {
    cursor: pointer;
    margin-left: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content-bg[b-hy63wm89e2] {
        padding: 1rem !important;
    }

    .content-bg h1[b-hy63wm89e2] {
        font-size: 1.5rem;
    }

    .btn-primary[b-hy63wm89e2] {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Validation errors */
.validation-message[b-hy63wm89e2] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.input-validation-error[b-hy63wm89e2] {
    border-color: #dc3545;
}

.input-validation-error:focus[b-hy63wm89e2] {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Liens */
a[b-hy63wm89e2] {
    text-decoration: none;
    color: #005c97;
    transition: color 0.3s ease;
}

a:hover[b-hy63wm89e2] {
    color: #004275;
    text-decoration: underline;
}

/* Input group pour SIRET */
.input-group[b-hy63wm89e2] {
    position: relative;
}

.input-group-text[b-hy63wm89e2] {
    background-color: transparent;
    border-left: none;
}

.input-group .form-control[b-hy63wm89e2] {
    border-right: none;
}

.input-group .form-control:focus[b-hy63wm89e2] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group .form-control:focus + .input-group-text[b-hy63wm89e2] {
    border-color: #80bdff;
}
/* /Components/Pages/Authenticated/Transactions/EncaissementCheque.razor.rz.scp.css */
/* ============================================
   STYLES POUR LA PAGE ENCAISSEMENT CHEQUE
   ============================================ */

/* Conteneur principal */
.content-bg[b-m7m4s273b3] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Num�ro d'�tape */
.num-etape[b-m7m4s273b3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Champs de saisie */
#checksContainer input.form-control[b-m7m4s273b3] {
    font-size: 1rem;
    padding: 0.75rem;
}

#checksContainer input.form-control.disabled[b-m7m4s273b3] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* �tats de validation Bootstrap */
#checksContainer input.form-control.is-valid[b-m7m4s273b3] {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: none; /* D�sactiver l'ic�ne par d�faut de Bootstrap */
}

#checksContainer input.form-control.is-invalid[b-m7m4s273b3] {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: none; /* D�sactiver l'ic�ne par d�faut de Bootstrap */
}

/* Ic�nes de validation dans input-group */
.input-group-text[b-m7m4s273b3] {
    border: 1px solid;
    padding: 0.375rem 0.75rem;
}

.input-group-text.bg-success[b-m7m4s273b3] {
    border-color: #28a745;
}

.input-group-text.bg-danger[b-m7m4s273b3] {
    border-color: #dc3545;
}

.input-group-text i[b-m7m4s273b3] {
    font-size: 1.25rem;
}

/* Messages d'erreur inline */
#checksContainer label.error[b-m7m4s273b3] {
    color: #dc3545;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

/* Indication requis */
.red[b-m7m4s273b3] {
    color: #dc3545;
}

/* Boutons */
.btn-primary[b-m7m4s273b3] {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled)[b-m7m4s273b3] {
    background-color: #0056b3;
    border-color: #004085;
}

.btn-primary:disabled[b-m7m4s273b3] {
    opacity: 0.65;
    cursor: not-allowed;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary[b-m7m4s273b3] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover[b-m7m4s273b3] {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Boutons +/- */
.btn.btn-primary.d-flex[b-m7m4s273b3] {
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Messages d'alerte */
.alert[b-m7m4s273b3] {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger[b-m7m4s273b3] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success[b-m7m4s273b3] {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Modales */
.modal.show[b-m7m4s273b3] {
    display: block;
}

.modal-dialog[b-m7m4s273b3] {
    max-width: 500px;
    margin: 1.75rem auto;
}

.modal-content[b-m7m4s273b3] {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-header[b-m7m4s273b3] {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-title[b-m7m4s273b3] {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body[b-m7m4s273b3] {
    padding: 1.5rem;
}

.modal-footer[b-m7m4s273b3] {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.close[b-m7m4s273b3] {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
}

.close:hover[b-m7m4s273b3] {
    opacity: 0.75;
}

/* Spinner pour le bouton de validation */
.spinner-border-sm[b-m7m4s273b3] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive */
@media (max-width: 768px) {
    .num-etape[b-m7m4s273b3] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    #checksContainer[b-m7m4s273b3] {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .col-md-6.offset-md-3[b-m7m4s273b3] {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .btn-primary[b-m7m4s273b3],
    .btn-secondary[b-m7m4s273b3] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .modal-dialog[b-m7m4s273b3] {
        margin: 0.5rem;
    }
}

/* Liste des ch�ques en attente */
.cheques-list[b-m7m4s273b3] {
    list-style: none;
    padding: 0;
}

.cheques-list li[b-m7m4s273b3] {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #007bff;
}

.cheques-list li:hover[b-m7m4s273b3] {
    background-color: #e9ecef;
}

/* Compteur de ch�ques */
.text-center span[b-m7m4s273b3] {
    display: inline-block;
}

/* Animation pour les nouveaux champs */
@keyframes slideIn-b-m7m4s273b3 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#checksContainer .row[b-m7m4s273b3] {
    animation: slideIn-b-m7m4s273b3 0.3s ease;
}

/* Focus sur les champs */
input.form-control:focus[b-m7m4s273b3] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* �tat d�sactiv� pour les inputs */
input.form-control:disabled[b-m7m4s273b3] {
    background-color: #e9ecef;
    opacity: 1;
}

/* QR Code Reader */
#qr-reader[b-m7m4s273b3] {
    border: none;
    max-width: 250px;
    margin: 0 auto;
}

#qr-reader video[b-m7m4s273b3] {
    width: 100%;
    max-width: 250px;
    border-radius: 0 0 0.25rem 0.25rem;
}

#qr-reader__dashboard[b-m7m4s273b3],
#qr-reader__dashboard_section[b-m7m4s273b3] {
    max-width: 250px !important;
}

.card-header .btn-sm[b-m7m4s273b3] {
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.card-header .btn-light[b-m7m4s273b3] {
    background-color: rgba(255, 255, 255, 0.9);
}

.card-header .btn-light:hover[b-m7m4s273b3] {
    background-color: white;
}

/* Num�ros d'�tapes */
.num-etape[b-m7m4s273b3] {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Espacement entre boutons */
.gap-2[b-m7m4s273b3] {
    gap: 0.5rem;
}
/* /Components/Pages/Authenticated/Transactions/MesTransactions.razor.rz.scp.css */
/* Styles pour la page MesTransactions - Version compacte */

/* === FORMULAIRE DE RECHERCHE COMPACT === */

.content-bg[b-9bq2xvijjf] {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.form-label[b-9bq2xvijjf] {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #495057;
}

.form-label i[b-9bq2xvijjf] {
    color: #0066cc;
}

.form-control-sm[b-9bq2xvijjf],
.form-select-sm[b-9bq2xvijjf] {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* === BOUTONS PERSONNALIS�S === */

/* Bouton primaire (bleu) */
button.btn-primary[b-9bq2xvijjf],
a.btn-primary[b-9bq2xvijjf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #0066cc;
    color: #fff;
    border: 1px solid #0066cc;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
}

button.btn-primary:hover[b-9bq2xvijjf],
a.btn-primary:hover[b-9bq2xvijjf] {
    background-color: #0052a3;
    border-color: #0052a3;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 102, 204, 0.25);
}

button.btn-primary:focus[b-9bq2xvijjf],
a.btn-primary:focus[b-9bq2xvijjf] {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.5);
    outline: none;
}

button.btn-primary:active[b-9bq2xvijjf] {
    transform: translateY(0);
}

button.btn-primary:disabled[b-9bq2xvijjf],
a.btn-primary:disabled[b-9bq2xvijjf] {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* Bouton secondaire (blanc avec bordure) */
button.btn-secondary[b-9bq2xvijjf],
a.btn-secondary[b-9bq2xvijjf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #fff;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
}

button.btn-secondary:hover[b-9bq2xvijjf],
a.btn-secondary:hover[b-9bq2xvijjf] {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    text-decoration: none;
    transform: translateY(-1px);
}

button.btn-secondary:focus[b-9bq2xvijjf],
a.btn-secondary:focus[b-9bq2xvijjf] {
    box-shadow: 0 0 0 0.25rem rgba(173, 181, 189, 0.25);
    outline: none;
}

button.btn-secondary:active[b-9bq2xvijjf] {
    transform: translateY(0);
}

button.btn-secondary:disabled[b-9bq2xvijjf],
a.btn-secondary:disabled[b-9bq2xvijjf] {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* Bouton petit */
.btn-sm[b-9bq2xvijjf] {
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
}

/* Bouton avec ic�ne */
button i[b-9bq2xvijjf],
a i[b-9bq2xvijjf] {
    font-size: 1em;
}

/* === TABLEAU === */

.table[b-9bq2xvijjf] {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.table thead th[b-9bq2xvijjf] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
    white-space: nowrap;
}

.table tbody td[b-9bq2xvijjf] {
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
}

.table tbody tr:hover[b-9bq2xvijjf] {
    background-color: rgba(0, 102, 204, 0.05);
}

.table tfoot td[b-9bq2xvijjf] {
    background-color: #f8f9fa;
    border-top: 2px solid #dee2e6;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
}

/* Badges de statut */
.badge[b-9bq2xvijjf] {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
}

.bg-warning[b-9bq2xvijjf] {
    background-color: #ffc107 !important;
    color: #000;
}

.bg-info[b-9bq2xvijjf] {
    background-color: #17a2b8 !important;
    color: #fff;
}

.bg-success[b-9bq2xvijjf] {
    background-color: #28a745 !important;
    color: #fff;
}

.bg-danger[b-9bq2xvijjf] {
    background-color: #dc3545 !important;
    color: #fff;
}

.bg-secondary[b-9bq2xvijjf] {
    background-color: #6c757d !important;
    color: #fff;
}

/* === PAGINATION === */

.pagination[b-9bq2xvijjf] {
    margin-bottom: 0;
}

.pagination-sm .page-link[b-9bq2xvijjf] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.pagination .page-item.active .page-link[b-9bq2xvijjf] {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.pagination .page-link[b-9bq2xvijjf] {
    color: #0066cc;
    cursor: pointer;
    border: 1px solid #dee2e6;
    transition: all 0.15s ease-in-out;
}

.pagination .page-link:hover[b-9bq2xvijjf] {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pagination .page-item.disabled .page-link[b-9bq2xvijjf] {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #fff;
    border-color: #dee2e6;
}

/* === MODAL === */

.modal.show[b-9bq2xvijjf] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-dialog-centered[b-9bq2xvijjf] {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-header[b-9bq2xvijjf] {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-title[b-9bq2xvijjf] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.modal-body[b-9bq2xvijjf] {
    padding: 1.5rem;
}

.modal-footer[b-9bq2xvijjf] {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn-close[b-9bq2xvijjf] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.5;
}

.btn-close:hover[b-9bq2xvijjf] {
    opacity: 1;
}

.btn-close[b-9bq2xvijjf]::before {
    content: "�";
    font-size: 2rem;
    line-height: 1;
}

/* === ALERTES === */

.alert[b-9bq2xvijjf] {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
}

.alert i[b-9bq2xvijjf] {
    font-size: 1.25rem;
}

.alert-danger[b-9bq2xvijjf] {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.alert-success[b-9bq2xvijjf] {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

/* === SPINNER === */

.spinner-border-sm[b-9bq2xvijjf] {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.spinner-border[b-9bq2xvijjf] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-9bq2xvijjf 0.75s linear infinite;
}

@keyframes spinner-border-b-9bq2xvijjf {
    to {
        transform: rotate(360deg);
    }
}

/* === UTILITIES === */

.fw-semibold[b-9bq2xvijjf] {
    font-weight: 600 !important;
}

.gap-2[b-9bq2xvijjf] {
    gap: 0.5rem !important;
}

.gap-3[b-9bq2xvijjf] {
    gap: 1rem !important;
}

.g-2[b-9bq2xvijjf] {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
}

.g-3[b-9bq2xvijjf] {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.text-end[b-9bq2xvijjf] {
    text-align: right !important;
}

.small[b-9bq2xvijjf] {
    font-size: 0.875rem;
}

/* === ANIMATIONS === */

#divResultTransaction[b-9bq2xvijjf] {
    animation: fadeIn-b-9bq2xvijjf 0.3s ease-in;
}

@keyframes fadeIn-b-9bq2xvijjf {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
    .table[b-9bq2xvijjf] {
        font-size: 0.8125rem;
    }

    .table thead th[b-9bq2xvijjf],
    .table tbody td[b-9bq2xvijjf] {
        padding: 0.5rem 0.25rem;
    }

    .btn-primary[b-9bq2xvijjf],
    .btn-secondary[b-9bq2xvijjf] {
        min-width: auto;
        padding: 0.5rem 1rem;
    }

    .modal-dialog[b-9bq2xvijjf] {
        margin: 0.5rem;
    }
}

@media (max-width: 576px) {
    .content-bg[b-9bq2xvijjf] {
        padding: 1rem !important;
    }

    .form-label[b-9bq2xvijjf] {
        font-size: 0.8125rem;
    }

    h1[b-9bq2xvijjf] {
        font-size: 1.5rem;
    }

    h2[b-9bq2xvijjf] {
        font-size: 1.25rem;
    }
}
/* /Components/Pages/Onboarding/Affiliation/Cgu.razor.rz.scp.css */
/* ============================================================================
   Approbation CGU - Acceptation des Conditions G�n�rales d'Utilisation
   ============================================================================ */

/* Num�ro d'�tape */
.num-etape[b-kq31oqimcn] {
    width: 50px;
    height: 50px;
    background-color: #005c97;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Document downloader */
.document-downloader[b-kq31oqimcn] {
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
}

.document-downloader:hover[b-kq31oqimcn] {
    transform: translateY(-5px);
}

.document-downloader i[b-kq31oqimcn] {
    transition: color 0.3s ease;
}

.document-downloader:hover i[b-kq31oqimcn] {
    color: #004570 !important;
}

.document-downloader p[b-kq31oqimcn] {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.document-downloader:disabled[b-kq31oqimcn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.document-downloader:disabled:hover[b-kq31oqimcn] {
    transform: none;
}

/* Contenu des �tapes */
.row.my-4[b-kq31oqimcn] {
    min-height: 200px;
}

/* Boutons */
.btn-primary[b-kq31oqimcn] {
    background-color: #005c97;
    border-color: #005c97;
    font-weight: 600;
}

.btn-primary:hover:not(:disabled)[b-kq31oqimcn] {
    background-color: #004570;
    border-color: #004570;
}

.btn-primary:disabled[b-kq31oqimcn] {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.btn-secondary[b-kq31oqimcn] {
    background-color: #6c757d;
    border-color: #6c757d;
    font-weight: 600;
}

.btn-secondary:hover:not(:disabled)[b-kq31oqimcn] {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Titre de la page */
.text-primary[b-kq31oqimcn] {
    color: #005c97 !important;
}

/* Messages d'aide */
small.text-muted[b-kq31oqimcn] {
    font-size: 0.875rem;
    font-style: italic;
}

/* Ic�ne PDF */
.bi-file-earmark-pdf[b-kq31oqimcn] {
    display: block;
    margin: 0 auto;
}

/* Animation du spinner */
.spinner-border[b-kq31oqimcn] {
    width: 3rem;
    height: 3rem;
}

.btn .spinner-border-sm[b-kq31oqimcn] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive */
@media (max-width: 767px) {
    .num-etape[b-kq31oqimcn] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .document-downloader i[b-kq31oqimcn] {
        font-size: 3rem !important;
    }

    .document-downloader p[b-kq31oqimcn] {
        font-size: 0.85rem;
    }

    h2[b-kq31oqimcn] {
        font-size: 2rem !important;
    }
}

/* Alignement des colonnes */
.text-end[b-kq31oqimcn] {
    text-align: right;
}

/* Card principale */
.form-content[b-kq31oqimcn] {
    background-color: white;
    border-radius: 12px;
}

/* Espacement des sections */
.row.my-4 .col-12[b-kq31oqimcn] {
    display: flex;
    flex-direction: column;
}

/* Zone de t�l�chargement */
.document-downloader[b-kq31oqimcn] {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Bouton accepter d�sactiv� avec message */
.btn-primary:disabled + small[b-kq31oqimcn] {
    opacity: 0.7;
}
/* /Components/Pages/Onboarding/Affiliation/InstructionBancaire.razor.rz.scp.css */
/* ============================================================================
   Instructions Bancaires - Finalisation affiliation partenaire
   ============================================================================ */

/* Titre de la page */
.text-primary[b-yfo5y5y2ot] {
    color: #005c97 !important;
}

/* Message de redirection */
.alert-info[b-yfo5y5y2ot] {
    background-color: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-info h3[b-yfo5y5y2ot],
.alert-info h4[b-yfo5y5y2ot],
.alert-info h5[b-yfo5y5y2ot] {
    color: #005c97;
    margin-bottom: 1rem;
}

.alert-info p[b-yfo5y5y2ot] {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.alert-info ul[b-yfo5y5y2ot] {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.alert-info strong[b-yfo5y5y2ot] {
    color: #003d6b;
}

/* Boutons */
.btn-secondary[b-yfo5y5y2ot] {
    background-color: #6c757d;
    border-color: #6c757d;
    font-weight: 600;
}

.btn-secondary:hover:not(:disabled)[b-yfo5y5y2ot] {
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-primary[b-yfo5y5y2ot] {
    background-color: #005c97;
    border-color: #005c97;
    font-weight: 600;
}

.btn-primary:hover:not(:disabled)[b-yfo5y5y2ot] {
    background-color: #004570;
    border-color: #004570;
}

.btn:disabled[b-yfo5y5y2ot] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Ic�nes dans les boutons */
.btn i[b-yfo5y5y2ot] {
    font-size: 1.1rem;
}

/* Spinner dans bouton */
.btn .spinner-border-sm[b-yfo5y5y2ot] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Animation de chargement */
.spinner-border[b-yfo5y5y2ot] {
    width: 3rem;
    height: 3rem;
}

/* Card principale */
.form-content[b-yfo5y5y2ot] {
    background-color: white;
    border-radius: 12px;
}

/* Messages d'alerte */
.alert[b-yfo5y5y2ot] {
    border-radius: 8px;
}

.alert i[b-yfo5y5y2ot] {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 767px) {
    h2[b-yfo5y5y2ot] {
        font-size: 2rem !important;
    }
    
    .btn[b-yfo5y5y2ot] {
        font-size: 0.95rem;
    }
    
    .alert-info[b-yfo5y5y2ot] {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Espacement */
.py-5[b-yfo5y5y2ot] {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mt-5[b-yfo5y5y2ot] {
    margin-top: 3rem !important;
}

.mb-3[b-yfo5y5y2ot] {
    margin-bottom: 1rem !important;
}

/* Centrage texte */
.text-center[b-yfo5y5y2ot] {
    text-align: center !important;
}

@media (min-width: 768px) {
    .text-md-left[b-yfo5y5y2ot] {
        text-align: left !important;
    }
}
/* /Components/Pages/Public/CampaignEnded.razor.rz.scp.css */
/* CampaignEnded.razor.css - Styles pour la page de fin de campagne */

.campaign-ended-page[b-szcoc5abyi] {
    padding: 60px 15px;
    min-height: 60vh;
}

.campaign-ended-card[b-szcoc5abyi] {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 30px;
}

/* Ic�ne */
.campaign-ended-icon[b-szcoc5abyi] {
    font-size: 80px;
    color: #dc3545;
    opacity: 0.9;
}

.campaign-ended-icon i[b-szcoc5abyi] {
    display: inline-block;
}

/* Titre */
.campaign-ended-title[b-szcoc5abyi] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Message */
.campaign-ended-message[b-szcoc5abyi] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.campaign-ended-message p[b-szcoc5abyi] {
    margin-bottom: 1rem;
}

.campaign-ended-message p:last-child[b-szcoc5abyi] {
    margin-bottom: 0;
}

/* Chargement */
.loading-container[b-szcoc5abyi] {
    padding: 40px 20px;
}

.loading-container .spinner-border[b-szcoc5abyi] {
    width: 3rem;
    height: 3rem;
}

/* Alert */
.alert[b-szcoc5abyi] {
    border-radius: 8px;
    padding: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .campaign-ended-page[b-szcoc5abyi] {
        padding: 40px 15px;
    }

    .campaign-ended-card[b-szcoc5abyi] {
        padding: 20px;
    }

    .campaign-ended-icon[b-szcoc5abyi] {
        font-size: 60px;
    }

    .campaign-ended-title[b-szcoc5abyi] {
        font-size: 1.5rem;
    }

    .campaign-ended-message[b-szcoc5abyi] {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .campaign-ended-icon[b-szcoc5abyi] {
        font-size: 50px;
    }

    .campaign-ended-title[b-szcoc5abyi] {
        font-size: 1.25rem;
    }

    .campaign-ended-message[b-szcoc5abyi] {
        font-size: 0.95rem;
    }
}
/* /Components/Shared/AffiliationTimeline.razor.rz.scp.css */
/* ============================================================================
   Affiliation Timeline - Composant Timeline Horizontale
   ============================================================================ */

.affiliation-timeline-horizontal[b-29w1lf0rzq] {
    padding: 2rem 0;
}

.timeline-steps[b-29w1lf0rzq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step[b-29w1lf0rzq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    text-align: center;
}

.timeline-marker[b-29w1lf0rzq] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 3px solid #dee2e6;
    font-size: 1.2rem;
    font-weight: bold;
    color: #6c757d;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* �tape compl�t�e */
.timeline-step.completed .timeline-marker[b-29w1lf0rzq] {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.timeline-step.completed .timeline-marker i[b-29w1lf0rzq] {
    font-size: 1.5rem;
}

/* �tape active */
.timeline-step.active .timeline-marker[b-29w1lf0rzq] {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    animation: pulse-b-29w1lf0rzq 2s infinite;
}

@keyframes pulse-b-29w1lf0rzq {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* �tape en attente */
.timeline-step.pending .timeline-marker[b-29w1lf0rzq] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #adb5bd;
}

/* Label de l'�tape */
.timeline-label[b-29w1lf0rzq] {
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 120px;
}

/* Connecteur entre les �tapes */
.timeline-connector[b-29w1lf0rzq] {
    position: absolute;
    top: 25px;
    left: 50%;
    right: -50%;
    height: 3px;
    background-color: #dee2e6;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.timeline-connector.active[b-29w1lf0rzq] {
    background-color: #28a745;
}

/* Derni�re �tape (pas de connecteur) */
.timeline-step:last-child .timeline-connector[b-29w1lf0rzq] {
    display: none;
}

/* Num�ro de l'�tape */
.step-number[b-29w1lf0rzq] {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-steps[b-29w1lf0rzq] {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .timeline-step[b-29w1lf0rzq] {
        flex-direction: row;
        align-items: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .timeline-marker[b-29w1lf0rzq] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .timeline-label[b-29w1lf0rzq] {
        margin-top: 0;
        margin-left: 1rem;
        text-align: left;
        max-width: none;
    }

    .timeline-connector[b-29w1lf0rzq] {
        top: 45px;
        left: 20px;
        right: auto;
        width: 3px;
        height: calc(100% - 20px);
    }

    .timeline-step:last-child[b-29w1lf0rzq] {
        margin-bottom: 0;
    }

    .timeline-step:last-child .timeline-connector[b-29w1lf0rzq] {
        display: none;
    }
}

/* Alertes pour �tats d'erreur */
.affiliation-timeline-horizontal .alert[b-29w1lf0rzq] {
    max-width: 900px;
    margin: 0 auto;
}
/* /Components/Shared/OnboardingTimeline.razor.rz.scp.css */
/* ============================================================================
   OnboardingTimeline - Timeline verticale du processus d'affiliation
   Style identique aux pages d'inscription (Informations, Contact)
   ============================================================================ */

.affiliation-timeline[b-s9os6luz0w] {
    padding: 0;
}

.timeline-step[b-s9os6luz0w] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 0;
}

.timeline-step:last-child[b-s9os6luz0w] {
    margin-bottom: 0;
}

/* Marker (num�ro) */
.timeline-marker[b-s9os6luz0w] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #6c757d;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Ic�ne de coche dans le marker */
.timeline-marker i[b-s9os6luz0w] {
    font-size: 1.5rem;
}

/* Contenu du step */
.timeline-content[b-s9os6luz0w] {
    margin-left: 1rem;
    padding-top: 0.75rem;
}

.timeline-content h6[b-s9os6luz0w] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}

/* �tat: Active (�tape en cours) */
.timeline-step.active .timeline-marker[b-s9os6luz0w] {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.timeline-step.active .timeline-content h6[b-s9os6luz0w] {
    color: #007bff;
    font-weight: 700;
}

/* �tat: Completed (�tape termin�e) */
.timeline-step.completed .timeline-marker[b-s9os6luz0w] {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.timeline-step.completed .timeline-content h6[b-s9os6luz0w] {
    color: #28a745;
}

/* Responsive - Mobile */
@media (max-width: 991px) {
    .affiliation-timeline[b-s9os6luz0w] {
        display: none; /* Masquer sur mobile comme dans les pages d'inscription */
    }
}
