/* /Area/Login/Pages/Login.razor.rz.scp.css */

.connexion-container[b-9vurjy3fz4] {
    max-width: 400px;
    margin: 8rem auto;
    padding: 1rem;
}
 
.btn-connexion[b-9vurjy3fz4] {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #0a6e46;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

    .btn-connexion:hover[b-9vurjy3fz4] {
        background-color: #005f3d;
    }

/* Page wrapper (remplace/complète les styles existants) */
.login-page-root[b-9vurjy3fz4] {
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    /* padding-top: 6vh; /* décalage vers le haut comme sur la capture */ */
    /* background-color: #181819; /* fond très sombre */ */ -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* La "carte" principale */
.login-card[b-9vurjy3fz4] {
    width: min(90vw, 720px);
    height: 420px;
    background: linear-gradient(180deg, #1b1c1d 0%, #141515 100%);
    border-radius: 28px;
    padding: 2.5rem 3rem;
    box-shadow: 0 24px 48px rgba(0,0,0,0.72), /* grosse ombre portée */
    0 6px 18px rgba(0,0,0,0.45); /* ombre douce supplémentaire */
    border: 1px solid rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

/* Titre discret */
.login-title[b-9vurjy3fz4] {
    color: #d1d1d1;
    font-size: 1.05rem;
    margin: 0 0 1.2rem 0;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
}

/* Ligne de formulaire contenant l'input (positionné vers la gauche comme sur la capture) */
.login-form-row[b-9vurjy3fz4] {
    max-width: 420px;
    margin-left: 0.5rem; /* léger décalage à gauche */
}

/* Input style "inset" arrondi et fin contour intérieur */
.login-input[b-9vurjy3fz4] {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #cfcfcf;
    background: hsla(0,0%,100%,.04); /* transparent; */
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.02),  */ /* léger relief intérieur */
    /*  inset 0 -6px 18px rgba(0,0,0,0.55); */ /* profondeur sombre */
    outline: none;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

    /* Placeholder plus doux */
    .login-input[b-9vurjy3fz4]::placeholder {
        color: rgba(207,207,207,0.45);
    }

    /* Focus: léger halo et renforcement du contour */
    .login-input:focus[b-9vurjy3fz4] {
        border-color: rgba(255,255,255,0.12);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 0 0 6px rgba(10,110,70,0.035); /* discret halo verté */
    }

/* utilitaire pour cacher visuellement un label tout en restant accessible */
.visually-hidden[b-9vurjy3fz4] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* --- Compatibilité / anciennes classes (fusion douce avec ton fichier existant) --- */
.connexion-container[b-9vurjy3fz4],
.connexion-form[b-9vurjy3fz4],
.custom_input[b-9vurjy3fz4],
.btn-connexion[b-9vurjy3fz4],
.connexion-help[b-9vurjy3fz4] {
    /* styles existants non perturbés mais neutralisés si non utilisés */
}

 /*Responsive*/ 
@media (max-width: 520px) {
    .login-card[b-9vurjy3fz4] {
        height: auto;
        padding: 1.5rem;
        border-radius: 18px;
    }

    .login-form-row[b-9vurjy3fz4] {
        max-width: 100%;
        margin-left: 0;
    }
}


:root[b-9vurjy3fz4] {
    --light-gray: #f4f5f6;
    --light-gray-06: rgba(244,245,246,0.06);
}

/* Utilitaire: fond très discret utilisant la gris très léger (pour badges, backgrounds secondaires, overlays) */
.login-subtle[b-9vurjy3fz4] {
    background-color: var(--light-gray-06);
    border-radius: 10px;
}

/* Exemple d'application douce sur la carte : léger gradient subtil en haut */
.login-card[b-9vurjy3fz4]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--light-gray-06) 0%, transparent 18%);
    pointer-events: none;
    border-radius: inherit;
}
/* /Area/Operations/Composants/Filtre.razor.rz.scp.css */
.filtre-picker[b-moorrshokd] {
    padding: 10px;
}

.picker-horizontal[b-moorrshokd] {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* Supprim� : scroll-snap-type. Il peut entrer en conflit avec le centrage JS. */
    /* Le d�filement sera enti�rement contr�l� par JavaScript pour plus de pr�cision. */
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    /* Ajout� : Masque la barre de d�filement pour une esth�tique plus propre. */
    scrollbar-width: none; /* Pour Firefox */
    -ms-overflow-style: none;  /* Pour Internet Explorer 10+ */
}

/* Ajout� : Masque la barre de d�filement pour les navigateurs WebKit (Chrome, Safari) */
.picker-horizontal[b-moorrshokd]::-webkit-scrollbar {
    display: none;
}

.picker-item[b-moorrshokd] {
    margin: 0px 20px;
    color: gray;
    font-size: 20px;
    cursor: pointer;
    white-space: nowrap;
    /* Supprim� : scroll-snap-align. Inutile sans scroll-snap-type. */
    transition: transform 200ms ease, color 200ms ease;
    will-change: transform;
    /* Ajout� : Emp�che les �l�ments de se r�tr�cir. C'est crucial. */
    /* Chaque �l�ment gardera sa largeur, for�ant le conteneur � d�border et � devenir scrollable. */
    flex-shrink: 0;
}

.picker-item.active[b-moorrshokd] {
    color: white;
    font-weight: bold;
}

/* Classe appliqu�e par le module JS lorsque centr� */
.picker-item.centered[b-moorrshokd] {
    transform: translateY(-3px) scale(1.08);
    color: white;
    font-weight: 700;
}

/* l�g�re priorit� pour que centered se combine bien avec active */
.picker-item.active.centered[b-moorrshokd] {
    transform: translateY(-3px) scale(1.12);
}

/* styles year (inchang�s) */
.year[b-moorrshokd] {
    border: transparent;
    background-color: transparent;
    color: white;
}

/* Si vous appliquez la classe .year sur le <select> ou son conteneur, cibler le select */
.year[b-moorrshokd],
.year select[b-moorrshokd] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 0.5rem; /* ajustez selon l'espacement souhait� */
    font-size: 20px;
}

/* Masque le chevron dans IE/Edge */
.year select[b-moorrshokd]::-ms-expand {
    display: none;
}

/* �vite l'affichage d'ombre / outline ind�sirable au focus si besoin */
.year select:focus[b-moorrshokd] {
    outline: none;
    box-shadow: none;
}

.year[b-moorrshokd]:after {
    content: none;
    margin: 0 10px;
    color: gray;
}
/* /Area/Operations/Composants/OperationCard.razor.rz.scp.css */

.operation_row[b-p4z8iy1fz4] {
    display: flex;
    margin-bottom: 5px;
    border-radius: 15px;
    cursor: pointer;
    padding: 5px 0px;
}

    .operation_row:hover[b-p4z8iy1fz4] {
        background-color: hsl(0deg 0% 100% / 50%);
    }
/* /Area/Operations/Composants/OperationRow.razor.rz.scp.css */
.operation_row[b-dknf32ykqd] {
    display: flex;
    margin-bottom: 5px;
    border-radius: 15px;
    cursor: pointer;
    padding: 5px 0px;
    position: relative; /* Permet de positionner l'icône en absolu par rapport à la ligne */
}

    .operation_row:hover[b-dknf32ykqd] {
        /*background-color: hsl(0deg 0% 100% / 50%);*/
        background-color: #2C2C2C;
    }
/* AJOUT D'ICONES (Simulées par des ronds de couleur) */
.t-icon[b-dknf32ykqd] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    background-color: #2C2C2C; /* Fond de l'icône */
}

/* Positionne l'icône "Partagé" en haut à droite de la .operation_row */
.operation_row .operation_montant[b-dknf32ykqd] {
    /* garde un espace à droite pour éviter le recouvrement avec l'icône */
    padding-right: 18px;
}

.operation_row .operation_montant sup[b-dknf32ykqd] {
    position: absolute;
    top: 6px;    /* ajustez si nécessaire */
    right: 10px; /* ajustez si nécessaire */
    width: 13px;
    height: 13px;
    display: inline-block;
    line-height: 0;
    pointer-events: auto;
}
/* /Area/Operations/Composants/TresorerieComponent.razor.rz.scp.css */
/* (le même CSS que précédemment — inchangé) */
.person-card[b-irk3vkzt28] {
    background-color: #1E1E1E;
    border-radius: 16px;
    overflow: hidden; /* Important pour l'animation */
    margin-bottom: 15px;
    border: 1px solid #2C2C2C;
    transition: border-color 0.2s;
}

.person-header[b-irk3vkzt28] {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #1E1E1E;
    position: relative;
    z-index: 2;
}

.ph-left[b-irk3vkzt28] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar[b-irk3vkzt28] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #555, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFF;
    border: 2px solid #2C2C2C;
}

.ph-info h4[b-irk3vkzt28] {
    font-size: 1rem;
    color: #FFF;
    margin-bottom: 2px;
}

.ph-info span[b-irk3vkzt28] {
    font-size: 0.75rem;
    color: #888;
    display: block;
}

.ph-balance[b-irk3vkzt28] {
    text-align: right;
}

.balance-val[b-irk3vkzt28] {
    font-weight: 700;
    font-size: 1rem;
}

.balance-label[b-irk3vkzt28] {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-red[b-irk3vkzt28] {
    color: #EF5350;
}

.text-green[b-irk3vkzt28] {
    color: #66BB6A;
}

.text-grey[b-irk3vkzt28] {
    color: #BBB;
}

.chevron[b-irk3vkzt28] {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 0.8rem;
    margin-left: 10px;
}

.person-card.open .chevron[b-irk3vkzt28] {
    transform: rotate(180deg);
}

.person-body[b-irk3vkzt28] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    background-color: #161616;
    border-top: 1px solid #2C2C2C;
}

.person-card.open .person-body[b-irk3vkzt28] {
    max-height: 40vh;
    opacity: 1;
    overflow: auto;
}

.group-section[b-irk3vkzt28] {
    padding: 0px 15px;
}

.group-title[b-irk3vkzt28] {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.shared-row[b-irk3vkzt28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

    .shared-row[b-irk3vkzt28]::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 5px;
        bottom: 5px;
        width: 3px;
        border-radius: 0 4px 4px 0;
    }

.border-red[b-irk3vkzt28]::before {
    background-color: #EF5350;
}

.border-green[b-irk3vkzt28]::before {
    background-color: #66BB6A;
}

.sr-left[b-irk3vkzt28] {
    flex: 1;
    padding-right: 10px;
}

.sr-label[b-irk3vkzt28] {
    font-size: 0.9rem;
    color: #E0E0E0;
    font-weight: 500;
    margin-bottom: 3px;
}

.sr-meta[b-irk3vkzt28] {
    font-size: 0.75rem;
    color: #777;
    font-feature-settings: "tnum";
}

.sr-right[b-irk3vkzt28] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sr-amount[b-irk3vkzt28] {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.mini-toggle[b-irk3vkzt28] {
    width: 36px;
    height: 20px;
    background: #333;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

    .mini-toggle[b-irk3vkzt28]::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 16px;
        height: 16px;
        background: #888;
        border-radius: 50%;
        transition: 0.3s;
    }

    .mini-toggle.checked[b-irk3vkzt28] {
        background: #2E7D32;
    }

        .mini-toggle.checked[b-irk3vkzt28]::after {
            transform: translateX(16px);
            background: #FFF;
        }

.shared-row.paid .sr-label[b-irk3vkzt28],
.shared-row.paid .sr-meta[b-irk3vkzt28],
.shared-row.paid .sr-amount[b-irk3vkzt28] {
    opacity: 0.4;
    text-decoration: line-through;
}

.total-row[b-irk3vkzt28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 10px;
    border-top: 1px dashed #333;
}

.total-label[b-irk3vkzt28] {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.total-amount[b-irk3vkzt28] {
    font-size: 0.9rem;
    font-weight: 700;
}

.scroll-area[b-irk3vkzt28] {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    padding-bottom: 80px;
}

    .scroll-area[b-irk3vkzt28]::-webkit-scrollbar {
        display: none;
    }

.switch[b-irk3vkzt28] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 23px;
}

    .switch input[b-irk3vkzt28] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-irk3vkzt28] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 34px;
}

    .slider[b-irk3vkzt28]:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider[b-irk3vkzt28] {
    background-color: #4CAF50;
}

    input:checked + .slider[b-irk3vkzt28]:before {
        transform: translateX(26px);
    }
/* /Area/Operations/Pages/Operations.razor.rz.scp.css */
/* La "carte" principale */
.dark-card[b-4abg2lw2h0] {
    z-index: 99;
    /*width: 85%;*/
    /*height: 20vh;*/
    background: linear-gradient(145deg, #2C2C2C, #1E1E1E);
    /*background: linear-gradient(180deg, #1b1c1d 0%, #141515 100%);*/
    border-radius: 28px;
    /*padding: 1rem;*/
    padding: 10px;
    /*box-shadow: 0 24px 48px rgba(0,0,0,0.72),*/ /* grosse ombre port�e */
    /*0 6px 18px rgba(0,0,0,0.45);*/ /* ombre douce suppl�mentaire */
    border: 1px solid rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.gray-card[b-4abg2lw2h0] {
    z-index: 0;
    width: min(90vw, 720px);
    height: 20vh;
    background: linear-gradient(180deg, #1b1c1d 0%, #141515 100%);
    box-shadow: 0 24px 48px rgba(0,0,0,0.72), /* grosse ombre port�e */
    0 6px 18px rgba(0,0,0,0.45); /* ombre douce suppl�mentaire */
    border-radius: 28px;
    padding: 2.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
    height: 70%;
    position: absolute;
    width: 100%;
    bottom: 0;
}



/* Boutons de type d'op�ration */
.typeOperation[b-4abg2lw2h0] {
    color: #ffffff !important; /* texte en blanc */
    border-color:transparent;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: color 0.12s ease-in-out, text-decoration 0.12s;
}

/* gardez le texte blanc au survol / focus */
    .typeOperation:hover[b-4abg2lw2h0],
    .typeOperation:focus[b-4abg2lw2h0],
    .typeOperation:active[b-4abg2lw2h0]
    {
        color: #ffffff !important;
        border-color: transparent;
    }

/* soulignement pour le bouton actif */
    .typeOperation.active[b-4abg2lw2h0] {
        color: #ffffff !important;
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-decoration-color: #ffffff;
        text-underline-offset: 6px;
   
    }


.balance-info h3[b-4abg2lw2h0] {
    font-size: 0.9rem;
    color: #BBBBBB;
    margin-bottom: 10px;
    font-weight: 500;
}

.balance-amount[b-4abg2lw2h0] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50; /* Vert Material Design */
}

.budget-target[b-4abg2lw2h0] {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 5px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-m6r67nyzg8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-m6r67nyzg8] {
    flex: 1;
}

.sidebar[b-m6r67nyzg8] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-m6r67nyzg8] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-m6r67nyzg8]  a, .top-row[b-m6r67nyzg8]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-m6r67nyzg8]  a:hover, .top-row[b-m6r67nyzg8]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-m6r67nyzg8]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-m6r67nyzg8] {
        justify-content: space-between;
    }

    .top-row[b-m6r67nyzg8]  a, .top-row[b-m6r67nyzg8]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
   /* .page {
        flex-direction: row;
    }*/

    .sidebar[b-m6r67nyzg8] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-m6r67nyzg8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-m6r67nyzg8]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-m6r67nyzg8], article[b-m6r67nyzg8] {
        /*padding-left: 2rem !important;*/
        /*padding-right: 1.5rem !important;*/
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-0k6cijiay1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-0k6cijiay1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-0k6cijiay1] {
    font-size: 1.1rem;
}

.bi[b-0k6cijiay1] {
    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-0k6cijiay1] {
    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-0k6cijiay1] {
    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-0k6cijiay1] {
    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");
}

.nav-item[b-0k6cijiay1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-0k6cijiay1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-0k6cijiay1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-0k6cijiay1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-0k6cijiay1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-0k6cijiay1]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-0k6cijiay1] {
        display: none;
    }

    .collapse[b-0k6cijiay1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-0k6cijiay1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/Modal.razor.rz.scp.css */
.modal-backdrop[b-zv2fpj95ax] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    z-index: 9999;
}

.modal-content[b-zv2fpj95ax] {
    /*background-color: white;*/
    /*padding: 20px;*/
    border-radius: 20px 20px 0px 0px;
    max-height: 85vh;
    padding: 20px;
}

.modal-header[b-zv2fpj95ax] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body[b-zv2fpj95ax] {
    margin-top: 10px;
    padding: 0px;
}

.close-button[b-zv2fpj95ax] {
    background-color: transparent;
    border: none;
    font-size: large;
    cursor: pointer;
}

.modal-dialog-slide-up[b-zv2fpj95ax] {
    animation: slide-up-b-zv2fpj95ax 0.5s ease-out;
}

@keyframes slide-up-b-zv2fpj95ax {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.form-check-input:checked[b-zv2fpj95ax] {
    background-color: #0a6e46;
    border-color: #0a6e46;
}
