/* /Features/Event/EventPage.razor.rz.scp.css */
/* Effet hover sur les cartes */
.hover-card[b-trrokgvkol] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 0.5rem;
}

.hover-card:hover[b-trrokgvkol] {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Badge de date sur les cartes */
.event-date-badge[b-trrokgvkol] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 70px;
    z-index: 10;
}

/* Badge de date - Variantes par statut */
.badge-invite[b-trrokgvkol] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
}

.badge-confirme[b-trrokgvkol] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.badge-decline[b-trrokgvkol] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

.badge-absent[b-trrokgvkol] {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%) !important;
}

/* Bordures colorées des cartes par statut */
.card-status-invite[b-trrokgvkol] {
    border-left: 4px solid #ffc107 !important;
}

.card-status-confirme[b-trrokgvkol] {
    border-left: 4px solid #28a745 !important;
}

.card-status-decline[b-trrokgvkol] {
    border-left: 4px solid #dc3545 !important;
    opacity: 0.8;
}

.card-status-absent[b-trrokgvkol] {
    border-left: 4px solid #6c757d !important;
    opacity: 0.75;
}

/* Effet supplémentaire pour les cartes déclinées/absentes */
.card-status-decline .card-body[b-trrokgvkol],
.card-status-absent .card-body[b-trrokgvkol] {
    background-color: #f8f9fa;
}

.card-status-decline .card-title[b-trrokgvkol],
.card-status-absent .card-title[b-trrokgvkol] {
    opacity: 0.7;
}

.event-date-day[b-trrokgvkol] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.event-date-month[b-trrokgvkol] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.event-date-year[b-trrokgvkol] {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* Titre de la carte */
.card-title[b-trrokgvkol] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

/* Affichage de la note sur les cards */
.event-rating-display[b-trrokgvkol] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
}

.rating-badge[b-trrokgvkol] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    min-width: 45px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.3);
}

.rating-stars-small[b-trrokgvkol] {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 1px;
}

.rating-stars-small i[b-trrokgvkol] {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}

/* Badges d'équipe */
.badge[b-trrokgvkol] {
    padding: 0.4em 0.65em;
    font-weight: 500;
}

/* État vide */
.bi-calendar-x[b-trrokgvkol] {
    opacity: 0.3;
}

/* En-tête d'équipe */
.h4[b-trrokgvkol] {
    color: #212529;
    font-weight: 600;
}

/* Animation des badges */
.badge[b-trrokgvkol] {
    transition: all 0.2s ease;
}

.badge:hover[b-trrokgvkol] {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .event-date-badge[b-trrokgvkol] {
        top: 10px;
        right: 10px;
        min-width: 60px;
        padding: 6px 10px;
    }

    .event-date-day[b-trrokgvkol] {
        font-size: 1.5rem;
    }

    .event-date-month[b-trrokgvkol] {
        font-size: 0.65rem;
    }

    .event-date-year[b-trrokgvkol] {
        font-size: 0.65rem;
    }

    .display-5[b-trrokgvkol] {
        font-size: 2rem;
    }
}

/* Modale de création d'événement */
.modal.show[b-trrokgvkol] {
    display: block;
    animation: fadeIn-b-trrokgvkol 0.2s ease-in;
}

.modal-dialog[b-trrokgvkol] {
    animation: slideDown-b-trrokgvkol 0.3s ease-out;
}

@keyframes fadeIn-b-trrokgvkol {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown-b-trrokgvkol {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Amélioration des inputs du formulaire */
.form-control:focus[b-trrokgvkol],
.form-select:focus[b-trrokgvkol] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label.fw-bold[b-trrokgvkol] {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Date picker styling */
input[type="date"][b-trrokgvkol]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(52%) sepia(88%) saturate(1000%) hue-rotate(220deg);
}

/* /Features/EventDetail/Components/PhotoUploader.razor.rz.scp.css */
/* Photo Uploader Simple Component Styles */

.photo-uploader-simple[b-xc4oc9ohck] {
    width: 100%;
}

.upload-zone-simple[b-xc4oc9ohck] {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.upload-zone-simple:hover[b-xc4oc9ohck] {
    border-color: #667eea;
    background-color: #f0f4ff;
}

.upload-content[b-xc4oc9ohck] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-icon-simple[b-xc4oc9ohck] {
    font-size: 3rem;
    color: #667eea;
}

.upload-loading[b-xc4oc9ohck] {
    padding: 2rem;
}

.upload-loading .spinner-border[b-xc4oc9ohck] {
    width: 3rem;
    height: 3rem;
}


/* Responsive */
@media (max-width: 768px) {
    .upload-zone[b-xc4oc9ohck] {
        padding: 2rem 1rem;
    }

    .upload-icon[b-xc4oc9ohck] {
        font-size: 3rem;
    }

    .photo-preview-image[b-xc4oc9ohck] {
        height: 120px;
    }
}

/* Messages d'erreur */
.alert ul[b-xc4oc9ohck] {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.alert li[b-xc4oc9ohck] {
    margin-top: 0.25rem;
}

/* /Features/EventDetail/EventDetailPage.razor.rz.scp.css */
/* Styles pour la note globale */
.global-rating-card[b-pvzvy3cxca] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-rating-card:hover[b-pvzvy3cxca] {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3) !important;
}

.global-rating-card .card-body[b-pvzvy3cxca] {
    background: white;
    border-radius: 0.375rem;
}

.global-rating-display[b-pvzvy3cxca] {
    padding: 1rem;
}

.rating-number[b-pvzvy3cxca] {
    font-size: 4rem;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-stars[b-pvzvy3cxca] {
    font-size: 2rem;
    margin-top: 0.5rem;
    letter-spacing: 0.2rem;
}

.rating-stars i[b-pvzvy3cxca] {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.rating-label[b-pvzvy3cxca] {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Animation pour la note globale */
@keyframes fadeInScale-b-pvzvy3cxca {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.global-rating-card[b-pvzvy3cxca] {
    animation: fadeInScale-b-pvzvy3cxca 0.5s ease;
}

/* Styles pour les cartes de participants */
.participant-card[b-pvzvy3cxca] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.participant-card:hover[b-pvzvy3cxca] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.bg-light-success[b-pvzvy3cxca] {
    background-color: #d4edda;
}

.bg-light-danger[b-pvzvy3cxca] {
    background-color: #f8d7da;
}

.bg-light-warning[b-pvzvy3cxca] {
    background-color: #fff3cd;
}

/* Styles pour l'affichage de la notation */
.rating-display[b-pvzvy3cxca] {
    font-size: 1.2rem;
}

.rating-input input[type="number"][b-pvzvy3cxca] {
    max-width: 150px;
}

/* Styles pour les votes cachés */
.vote-hidden[b-pvzvy3cxca] {
    animation: pulse-b-pvzvy3cxca 2s ease-in-out infinite;
}

@keyframes pulse-b-pvzvy3cxca {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.vote-hidden .badge[b-pvzvy3cxca] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles pour les photos */
.photo-card[b-pvzvy3cxca] {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
}

.photo-card:hover[b-pvzvy3cxca] {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.photo-card img[b-pvzvy3cxca] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.photo-card:hover img[b-pvzvy3cxca] {
    opacity: 0.9;
}

.object-fit-cover[b-pvzvy3cxca] {
    object-fit: cover;
}

/* Styles pour les cards restaurant et participants */
.card-body[b-pvzvy3cxca] {
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .col-lg-5[b-pvzvy3cxca], .col-lg-7[b-pvzvy3cxca] {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .display-6[b-pvzvy3cxca] {
        font-size: 1.5rem;
    }
    
    .participant-card[b-pvzvy3cxca] {
        margin-bottom: 1rem;
    }
    
    .card-body[b-pvzvy3cxca] {
        min-height: auto;
    }
}

/* Animations */
@keyframes fadeIn-b-pvzvy3cxca {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-pvzvy3cxca] {
    animation: fadeIn-b-pvzvy3cxca 0.3s ease;
}

/* Style pour la galerie de photos */
.photo-card .ratio[b-pvzvy3cxca] {
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.photo-card .ratio img[b-pvzvy3cxca] {
    transition: transform 0.3s ease;
}

.photo-card:hover .ratio img[b-pvzvy3cxca] {
    transform: scale(1.1);
}

/* /Features/Layout/MainLayout.razor.rz.scp.css */
.page[b-zp5x3ekhbd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zp5x3ekhbd] {
    flex: 1;
}

.sidebar[b-zp5x3ekhbd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-zp5x3ekhbd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-zp5x3ekhbd]  a, .top-row[b-zp5x3ekhbd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-zp5x3ekhbd]  a:hover, .top-row[b-zp5x3ekhbd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-zp5x3ekhbd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-zp5x3ekhbd] {
        justify-content: space-between;
    }

    .top-row[b-zp5x3ekhbd]  a, .top-row[b-zp5x3ekhbd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-zp5x3ekhbd] {
        flex-direction: row;
    }

    .sidebar[b-zp5x3ekhbd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-zp5x3ekhbd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-zp5x3ekhbd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-zp5x3ekhbd], article[b-zp5x3ekhbd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-zp5x3ekhbd] {
    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-zp5x3ekhbd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Features/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-n270cevk0d] {
    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-n270cevk0d] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-n270cevk0d] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-n270cevk0d] {
    font-size: 1.1rem;
}

.bi[b-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    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-n270cevk0d] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-n270cevk0d] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-n270cevk0d] {
        padding-bottom: 1rem;
    }

    .nav-item[b-n270cevk0d]  .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-n270cevk0d]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-n270cevk0d]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-n270cevk0d] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-n270cevk0d] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-n270cevk0d] {
        display: none;
    }

    .nav-scrollable[b-n270cevk0d] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Features/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-up9a470urk],
.components-reconnect-repeated-attempt-visible[b-up9a470urk],
.components-reconnect-failed-visible[b-up9a470urk],
.components-pause-visible[b-up9a470urk],
.components-resume-failed-visible[b-up9a470urk],
.components-rejoining-animation[b-up9a470urk] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-up9a470urk],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-up9a470urk],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-up9a470urk],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-up9a470urk],
#components-reconnect-modal.components-reconnect-retrying[b-up9a470urk],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-up9a470urk],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-up9a470urk],
#components-reconnect-modal.components-reconnect-failed[b-up9a470urk],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-up9a470urk] {
    display: block;
}


#components-reconnect-modal[b-up9a470urk] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-up9a470urk 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-up9a470urk 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-up9a470urk 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-up9a470urk]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-up9a470urk 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-up9a470urk {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-up9a470urk {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-up9a470urk {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-up9a470urk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-up9a470urk] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-up9a470urk] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-up9a470urk] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-up9a470urk] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-up9a470urk] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-up9a470urk] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-up9a470urk 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-up9a470urk] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-up9a470urk {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Features/Shared/Components/DrawerComponent/Drawer.razor.rz.scp.css */
/* Container du drawer */
.drawer[b-qwwh284yhi] {
    position: fixed;
    z-index: 9998;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

/* Positions */
.drawer-right[b-qwwh284yhi] {
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
}

.drawer-right.show[b-qwwh284yhi] {
    transform: translateX(0);
    animation: slideInRight-b-qwwh284yhi 0.3s ease-out;
}

.drawer-left[b-qwwh284yhi] {
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
}

.drawer-left.show[b-qwwh284yhi] {
    transform: translateX(0);
    animation: slideInLeft-b-qwwh284yhi 0.3s ease-out;
}

.drawer-top[b-qwwh284yhi] {
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
}

.drawer-top.show[b-qwwh284yhi] {
    transform: translateY(0);
    animation: slideInTop-b-qwwh284yhi 0.3s ease-out;
}

.drawer-bottom[b-qwwh284yhi] {
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

.drawer-bottom.show[b-qwwh284yhi] {
    transform: translateY(0);
    animation: slideInBottom-b-qwwh284yhi 0.3s ease-out;
}

/* Animations */
@keyframes slideInRight-b-qwwh284yhi {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft-b-qwwh284yhi {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInTop-b-qwwh284yhi {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInBottom-b-qwwh284yhi {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header du drawer */
.drawer-header[b-qwwh284yhi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.drawer-title[b-qwwh284yhi] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
}

.drawer-title i[b-qwwh284yhi] {
    font-size: 1.3rem;
}

.drawer-header .btn-close[b-qwwh284yhi] {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

/* Body du drawer */
.drawer-body[b-qwwh284yhi] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar personnalisée */
.drawer-body[b-qwwh284yhi]::-webkit-scrollbar {
    width: 8px;
}

.drawer-body[b-qwwh284yhi]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.drawer-body[b-qwwh284yhi]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.drawer-body[b-qwwh284yhi]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Backdrop */
.drawer-backdrop[b-qwwh284yhi] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.drawer-backdrop.fade[b-qwwh284yhi] {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.drawer-backdrop.fade.show[b-qwwh284yhi] {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .drawer-right[b-qwwh284yhi],
    .drawer-left[b-qwwh284yhi] {
        width: 85% !important;
        min-width: auto !important;
        max-width: none !important;
    }

    .drawer-top[b-qwwh284yhi],
    .drawer-bottom[b-qwwh284yhi] {
        height: 70% !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .drawer-header[b-qwwh284yhi] {
        padding: 1rem;
    }

    .drawer-body[b-qwwh284yhi] {
        padding: 1rem;
    }

    .drawer-title[b-qwwh284yhi] {
        font-size: 1.1rem;
    }
}

/* Animations pour le backdrop */
@keyframes fadeIn-b-qwwh284yhi {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Amélioration de l'accessibilité */
.drawer:focus[b-qwwh284yhi] {
    outline: none;
}

/* Style pour les sections dans le drawer */
.drawer-section[b-qwwh284yhi] {
    margin-bottom: 1.5rem;
}

.drawer-section:last-child[b-qwwh284yhi] {
    margin-bottom: 0;
}

.drawer-section-title[b-qwwh284yhi] {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

/* /Features/Shared/Components/SnackbarComponent/Snackbar.razor.rz.scp.css */
/* Container pour les snackbars */
.snackbar-container[b-x76sa08gef] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

/* Style de base du snackbar */
.snackbar[b-x76sa08gef] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    max-width: 100%;
    font-size: 0.95rem;
    animation: slideIn-b-x76sa08gef 0.3s ease-out;
}

/* Animation d'entrée */
@keyframes slideIn-b-x76sa08gef {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation de sortie */
.snackbar-exit[b-x76sa08gef] {
    animation: slideOut-b-x76sa08gef 0.3s ease-in forwards;
}

@keyframes slideOut-b-x76sa08gef {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Contenu du snackbar */
.snackbar-content[b-x76sa08gef] {
    display: flex;
    align-items: center;
    flex: 1;
}

.snackbar-message[b-x76sa08gef] {
    line-height: 1.5;
}

/* Bouton de fermeture */
.snackbar-close[b-x76sa08gef] {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
    font-size: 1rem;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snackbar-close:hover[b-x76sa08gef] {
    opacity: 1;
}

/* Types de snackbar */
.snackbar-success[b-x76sa08gef] {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.snackbar-error[b-x76sa08gef] {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.snackbar-warning[b-x76sa08gef] {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.snackbar-info[b-x76sa08gef] {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

/* Icônes */
.snackbar i[b-x76sa08gef] {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .snackbar-container[b-x76sa08gef] {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .snackbar[b-x76sa08gef] {
        min-width: auto;
        width: 100%;
    }

    @keyframes slideIn-b-x76sa08gef {
        from {
            transform: translateY(-100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideOut-b-x76sa08gef {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-100px);
            opacity: 0;
        }
    }
}

/* /Features/Team/TeamPage.razor.rz.scp.css */
/* Animation pour la modale */
.modal.fade.show[b-q6aepdsef6] {
    animation: fadeIn-b-q6aepdsef6 0.3s ease-in-out;
}

@keyframes fadeIn-b-q6aepdsef6 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-dialog[b-q6aepdsef6] {
    animation: slideDown-b-q6aepdsef6 0.3s ease-in-out;
}

@keyframes slideDown-b-q6aepdsef6 {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Style des cartes */
.card[b-q6aepdsef6] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 0.5rem;
}

.card:hover[b-q6aepdsef6] {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card.border-primary[b-q6aepdsef6] {
    border-width: 2px;
}

/* Style des badges */
.badge[b-q6aepdsef6] {
    padding: 0.5em 0.75em;
    font-weight: 500;
}

/* Boutons dans les cartes */
.card-footer .btn[b-q6aepdsef6] {
    transition: all 0.2s ease-in-out;
}

.card-footer .btn:hover[b-q6aepdsef6] {
    transform: scale(1.02);
}

/* Style du spinner de chargement */
.spinner-border[b-q6aepdsef6] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Amélioration du style du titre */
.display-5[b-q6aepdsef6] {
    font-weight: 600;
}

/* Style des icônes dans les titres */
h2 i[b-q6aepdsef6] {
    font-size: 1.2rem;
}

/* Amélioration de l'espacement */
.container-fluid[b-q6aepdsef6] {
    max-width: 1400px;
}

/* Style des alerts */
.alert[b-q6aepdsef6] {
    border-radius: 0.5rem;
    border: none;
}

.alert-info[b-q6aepdsef6] {
    background-color: #e7f3ff;
    color: #084298;
}

.alert-danger[b-q6aepdsef6] {
    background-color: #f8d7da;
    color: #842029;
}

/* Style pour les inputs dans la modale */
.modal-body .form-control:focus[b-q6aepdsef6] {
    border-color: #1b6ec2;
    box-shadow: 0 0 0 0.25rem rgba(27, 110, 194, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .display-5[b-q6aepdsef6] {
        font-size: 2rem;
    }
    
    .btn-lg[b-q6aepdsef6] {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

