/* _content/MarioShows.Web/Components/Calendar/Calendar.razor.rz.scp.css */
.calendar-container[b-4sxxgdwdn9] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.calendar-header[b-4sxxgdwdn9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.calendar-navigation[b-4sxxgdwdn9] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.calendar-navigation .btn[b-4sxxgdwdn9] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-navigation .btn:hover[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.calendar-navigation .btn-primary[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.calendar-title[b-4sxxgdwdn9] {
    margin: 0;
    text-align: center;
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.calendar-title:hover[b-4sxxgdwdn9] {
    opacity: 0.8;
}

.calendar-view-selector[b-4sxxgdwdn9] {
    display: flex;
    gap: 5px;
}

.calendar-view-selector .btn[b-4sxxgdwdn9] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
}

.calendar-view-selector .btn-outline-light:hover[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-view-selector .btn-primary[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.calendar-body[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

/* Vue Mois */
.month-view .calendar-weekdays[b-4sxxgdwdn9] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday-header[b-4sxxgdwdn9] {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 5px;
    color: rgba(255, 255, 255, 0.9);
}

.month-view .calendar-days[b-4sxxgdwdn9] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day[b-4sxxgdwdn9] {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.calendar-day:hover[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.calendar-day.other-month[b-4sxxgdwdn9] {
    opacity: 0.4;
}

.calendar-day.today .day-number[b-4sxxgdwdn9] {
    background: white;
    color: #667eea;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.calendar-day.selected[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
}

.day-number[b-4sxxgdwdn9] {
    font-size: 1rem;
    font-weight: 500;
    align-self: flex-start;
    margin-bottom: 4px;
}

/* Shows dans les jours */
.day-shows[b-4sxxgdwdn9] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.show-item[b-4sxxgdwdn9] {
    font-size: 0.65rem;
    padding: 2px 4px;
    border-radius: 3px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: transform 0.2s ease;
}

.show-item:hover[b-4sxxgdwdn9] {
    transform: scale(1.05);
    z-index: 10;
}

.show-platform[b-4sxxgdwdn9] {
    font-size: 0.7rem;
}

.show-platform-logo[b-4sxxgdwdn9] {
    height: 12px;
    width: auto;
    border-radius: 2px;
    vertical-align: middle;
}

.platform-badge-logo[b-4sxxgdwdn9] {
    height: 14px;
    width: auto;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

.show-title[b-4sxxgdwdn9] {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Vue Semaine */
.week-view .calendar-weekdays[b-4sxxgdwdn9] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.week-view .calendar-week-days[b-4sxxgdwdn9] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.week-view .calendar-day[b-4sxxgdwdn9] {
    aspect-ratio: auto;
    min-height: 400px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
}

.week-view .day-header[b-4sxxgdwdn9] {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.week-view .day-content[b-4sxxgdwdn9] {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
}

/* Cartes de shows pour la vue semaine */
.show-card[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-card:hover[b-4sxxgdwdn9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.show-card-header[b-4sxxgdwdn9] {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.show-platform-badge[b-4sxxgdwdn9] {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.show-platform-badge.large[b-4sxxgdwdn9] {
    font-size: 0.75rem;
    padding: 4px 10px;
}

.show-type-badge[b-4sxxgdwdn9] {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}

.show-type-badge.large[b-4sxxgdwdn9] {
    font-size: 0.75rem;
    padding: 4px 10px;
}

.show-card-title[b-4sxxgdwdn9] {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.show-episode[b-4sxxgdwdn9] {
    color: #666;
    font-size: 0.7rem;
    margin-top: 4px;
    display: block;
}

.show-episode.large[b-4sxxgdwdn9] {
    font-size: 0.8rem;
    margin: 0;
    color: #555;
}

/* Vue Jour */
.calendar-day-view[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.day-view-header[b-4sxxgdwdn9] {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.day-view-header h5[b-4sxxgdwdn9] {
    margin: 0;
    text-transform: capitalize;
}

.day-view-content[b-4sxxgdwdn9] {
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
}

.day-shows-list[b-4sxxgdwdn9] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.show-detail-card[b-4sxxgdwdn9] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-detail-card:hover[b-4sxxgdwdn9] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.show-detail-header[b-4sxxgdwdn9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.show-detail-header > div[b-4sxxgdwdn9] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.show-detail-title[b-4sxxgdwdn9] {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
}

.show-description[b-4sxxgdwdn9] {
    color: #666;
    font-size: 0.9rem;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.no-shows[b-4sxxgdwdn9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.no-shows p[b-4sxxgdwdn9] {
    margin-top: 16px;
    font-size: 1.1rem;
}

/* Scrollbar personnalisée */
.day-view-content[b-4sxxgdwdn9]::-webkit-scrollbar {
    width: 8px;
}

.day-view-content[b-4sxxgdwdn9]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.day-view-content[b-4sxxgdwdn9]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.day-view-content[b-4sxxgdwdn9]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Sélecteur de mois/année */
.month-year-picker-overlay[b-4sxxgdwdn9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-4sxxgdwdn9 0.2s ease;
}

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

.month-year-picker[b-4sxxgdwdn9] {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-4sxxgdwdn9 0.3s ease;
}

@keyframes slideUp-b-4sxxgdwdn9 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.picker-header[b-4sxxgdwdn9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.picker-header h5[b-4sxxgdwdn9] {
    color: #667eea;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

.picker-header .btn[b-4sxxgdwdn9] {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.months-grid[b-4sxxgdwdn9] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.month-button[b-4sxxgdwdn9] {
    padding: 12px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.month-button:hover[b-4sxxgdwdn9] {
    background: #f5f5f5;
    border-color: #667eea;
    transform: translateY(-2px);
}

.month-button.selected[b-4sxxgdwdn9] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

.month-button.current[b-4sxxgdwdn9] {
    border-color: #667eea;
    color: #667eea;
    font-weight: 600;
}

.month-button.current.selected[b-4sxxgdwdn9] {
    color: white;
}

.picker-footer[b-4sxxgdwdn9] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.picker-footer .btn[b-4sxxgdwdn9] {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.picker-footer .btn-secondary[b-4sxxgdwdn9] {
    background: #e0e0e0;
    border: none;
    color: #666;
}

.picker-footer .btn-secondary:hover[b-4sxxgdwdn9] {
    background: #d0d0d0;
}

.picker-footer .btn-primary[b-4sxxgdwdn9] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.picker-footer .btn-primary:hover[b-4sxxgdwdn9] {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-container[b-4sxxgdwdn9] {
        padding: 15px;
        border-radius: 8px;
    }

    .calendar-header[b-4sxxgdwdn9] {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .calendar-title[b-4sxxgdwdn9] {
        order: -1;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .calendar-navigation[b-4sxxgdwdn9] {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .calendar-navigation .btn[b-4sxxgdwdn9] {
        padding: 6px 12px;
        font-size: 1.2rem;
    }
    
    .calendar-view-selector[b-4sxxgdwdn9] {
        width: 100%;
        justify-content: center;
        gap: 4px;
    }

    .calendar-view-selector .btn[b-4sxxgdwdn9] {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .calendar-body[b-4sxxgdwdn9] {
        padding: 10px;
    }

    .week-view .calendar-week-days[b-4sxxgdwdn9] {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .week-view .calendar-day[b-4sxxgdwdn9] {
        min-height: 200px;
    }

    .month-view .calendar-weekdays[b-4sxxgdwdn9] {
        gap: 3px;
    }

    .weekday-header[b-4sxxgdwdn9] {
        font-size: 0.75rem;
        padding: 8px 3px;
    }

    .calendar-day[b-4sxxgdwdn9] {
        min-height: 60px;
        padding: 5px;
    }

    .day-number[b-4sxxgdwdn9] {
        font-size: 0.85rem;
    }

    .day-events[b-4sxxgdwdn9] {
        gap: 3px;
    }

    .day-event[b-4sxxgdwdn9] {
        font-size: 0.7rem;
        padding: 3px 5px;
    }
    
    .month-year-picker[b-4sxxgdwdn9] {
        max-width: 95%;
        padding: 12px;
    }
    
    .months-grid[b-4sxxgdwdn9] {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .month-button[b-4sxxgdwdn9] {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .calendar-container[b-4sxxgdwdn9] {
        padding: 10px;
    }

    .calendar-header[b-4sxxgdwdn9] {
        margin-bottom: 12px;
    }

    .calendar-title[b-4sxxgdwdn9] {
        font-size: 1rem;
    }

    .calendar-navigation .btn[b-4sxxgdwdn9] {
        padding: 5px 10px;
        font-size: 1.1rem;
    }

    .calendar-view-selector .btn[b-4sxxgdwdn9] {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .calendar-body[b-4sxxgdwdn9] {
        padding: 8px;
    }

    .month-view .calendar-weekdays[b-4sxxgdwdn9] {
        gap: 2px;
    }

    .weekday-header[b-4sxxgdwdn9] {
        font-size: 0.7rem;
        padding: 6px 2px;
    }

    .calendar-day[b-4sxxgdwdn9] {
        min-height: 50px;
        padding: 4px;
    }

    .day-number[b-4sxxgdwdn9] {
        font-size: 0.8rem;
    }

    .day-events[b-4sxxgdwdn9] {
        gap: 2px;
    }

    .day-event[b-4sxxgdwdn9] {
        font-size: 0.65rem;
        padding: 2px 4px;
    }

    .month-year-picker[b-4sxxgdwdn9] {
        max-width: 98%;
        padding: 10px;
    }

    .months-grid[b-4sxxgdwdn9] {
        gap: 6px;
    }

    .month-button[b-4sxxgdwdn9] {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
}

/* _content/MarioShows.Web/Components/Cards/SearchResultCardComponent.razor.rz.scp.css */
/* ============================================
   CARTE DE RÉSULTAT DE RECHERCHE
   Composant pour afficher les résultats de recherche (films, séries)
   ============================================ */

/* Carte principale - utilise les variables communes */
.result-card[b-antuzp99p4] {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.result-card:hover[b-antuzp99p4] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Poster de la carte */
.card-poster[b-antuzp99p4] {
    position: relative;
    width: 100%;
    padding-top: 150%; /* Ratio 2:3 pour les posters de films/séries */
    background: var(--light-color);
    overflow: hidden;
}

.card-poster img[b-antuzp99p4] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder quand pas d'image disponible */
.poster-placeholder[b-antuzp99p4] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 4rem;
    opacity: 0.7;
}

/* Badge type de média (Film/Série/Anime) */
.card-type-badge[b-antuzp99p4] {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   BOUTON FAVORI
   ============================================ */

/* Bouton de base - cercle avec icône étoile */
.favorite-button[b-antuzp99p4] {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-round);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: var(--z-dropdown);
}

/* Hover du bouton favori */
.favorite-button:hover[b-antuzp99p4] {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--warning-color);
}

/* Active/click du bouton */
.favorite-button:active[b-antuzp99p4] {
    transform: scale(1.05);
}

/* État "en favoris" - fond doré avec animation */
.favorite-button.is-favorite[b-antuzp99p4] {
    background: linear-gradient(135deg, var(--warning-color) 0%, #ff9800 100%);
    border-color: var(--warning-color);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.5);
    animation: pulse-favorite-b-antuzp99p4 0.6s ease;
}

.favorite-button.is-favorite:hover[b-antuzp99p4] {
    background: linear-gradient(135deg, #ffb300 0%, #f57c00 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

/* État désactivé (pendant chargement) */
.favorite-button:disabled[b-antuzp99p4] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Icône étoile à l'intérieur du bouton */
.favorite-button .favorite-icon[b-antuzp99p4] {
    transition: all var(--transition-normal);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    font-size: 1.4rem;
    line-height: 1;
    display: inline-block;
}

/* Animation de l'icône au hover */
.favorite-button:hover .favorite-icon[b-antuzp99p4] {
    transform: rotate(15deg) scale(1.1);
}

/* Animation de l'icône quand en favoris */
.favorite-button.is-favorite .favorite-icon[b-antuzp99p4] {
    animation: star-pop-b-antuzp99p4 0.4s ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Animation de pulsation du bouton quand ajouté aux favoris */
@keyframes pulse-favorite-b-antuzp99p4 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Animation de l'étoile qui apparaît avec rotation */
@keyframes star-pop-b-antuzp99p4 {
    0% {
        transform: scale(0.5) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ============================================
   BOUTON VU
   ============================================ */

/* Bouton de base - cercle avec icône check */
.watched-button[b-antuzp99p4] {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-round);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: var(--z-dropdown);
}

/* Hover du bouton vu */
.watched-button:hover[b-antuzp99p4] {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--success-color);
}

/* Active/click du bouton */
.watched-button:active[b-antuzp99p4] {
    transform: scale(1.05);
}

/* État "vu" - fond vert avec animation */
.watched-button.is-watched[b-antuzp99p4] {
    background: linear-gradient(135deg, var(--success-color) 0%, #2e7d32 100%);
    border-color: var(--success-color);
    color: white;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.5);
    animation: pulse-watched-b-antuzp99p4 0.6s ease;
}

.watched-button.is-watched:hover[b-antuzp99p4] {
    background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* État désactivé (pendant chargement) */
.watched-button:disabled[b-antuzp99p4] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Icône check à l'intérieur du bouton */
.watched-button .watched-icon[b-antuzp99p4] {
    transition: all var(--transition-normal);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}

/* Animation de l'icône au hover */
.watched-button:hover .watched-icon[b-antuzp99p4] {
    transform: scale(1.1);
}

/* Animation de l'icône quand marqué comme vu */
.watched-button.is-watched .watched-icon[b-antuzp99p4] {
    animation: check-pop-b-antuzp99p4 0.4s ease;
}

/* Animation de pulsation du bouton quand marqué comme vu */
@keyframes pulse-watched-b-antuzp99p4 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Animation du check qui apparaît */
@keyframes check-pop-b-antuzp99p4 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   CONTENU DE LA CARTE
   ============================================ */

.card-content[b-antuzp99p4] {
    padding: var(--spacing-md);
}

/* Titre du film/série */
.card-title[b-antuzp99p4] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limite à 2 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    min-height: 2.6em; /* Hauteur fixe pour 2 lignes */
}

/* Année de sortie */
.card-year[b-antuzp99p4] {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

/* Note/Rating */
.card-rating[b-antuzp99p4] {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--warning-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.card-rating span[b-antuzp99p4] {
    color: var(--dark-color);
}

/* Description/Synopsis */
.card-overview[b-antuzp99p4] {
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limite à 3 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablettes et mobiles */
@media (max-width: 768px) {
    .card-content[b-antuzp99p4] {
        padding: var(--spacing-sm);
    }

    .card-title[b-antuzp99p4] {
        font-size: 0.9rem;
        min-height: 2.4em;
    }

    .card-year[b-antuzp99p4] {
        font-size: 0.85rem;
    }

    .card-rating[b-antuzp99p4] {
        font-size: 0.85rem;
    }

    .card-overview[b-antuzp99p4] {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .favorite-button[b-antuzp99p4] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .watched-button[b-antuzp99p4] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .card-type-badge[b-antuzp99p4] {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .card-content[b-antuzp99p4] {
        padding: 0.5rem;
    }

    .card-title[b-antuzp99p4] {
        font-size: 0.85rem;
        min-height: 2.2em;
        margin-bottom: 0.25rem;
    }

    .card-year[b-antuzp99p4] {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .card-rating[b-antuzp99p4] {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .card-overview[b-antuzp99p4] {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-height: 1.3;
    }
    
    .favorite-button[b-antuzp99p4] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 0.4rem;
        left: 0.4rem;
    }

    .favorite-button .favorite-icon[b-antuzp99p4] {
        font-size: 1rem;
    }
    
    .watched-button[b-antuzp99p4] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        bottom: 0.4rem;
        left: 0.4rem;
    }

    .watched-button .watched-icon[b-antuzp99p4] {
        font-size: 1rem;
    }

    .card-type-badge[b-antuzp99p4] {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        top: 0.4rem;
        right: 0.4rem;
    }
}
/* _content/MarioShows.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-zkocd664xx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

@media (max-width: 640.98px) {
    .page[b-zkocd664xx] {
        flex-direction: column;
    }

    .sidebar[b-zkocd664xx] {
        width: 100%;
        max-width: 320px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.4);
        overflow: visible;
    }

    .sidebar.open[b-zkocd664xx] {
        transform: translateX(0);
    }

    /* S'assurer que le contenu du menu est visible quand la sidebar est ouverte */
    .sidebar.open .nav-scrollable[b-zkocd664xx] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    main[b-zkocd664xx] {
        width: 100%;
        margin-left: 0;
        padding-top: 3.5rem; /* Espace pour le top-row fixe */
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }

    .content[b-zkocd664xx] {
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }

    .content[b-zkocd664xx] {
        padding: 0.75rem !important;
    }

    /* Overlay pour fermer le menu */
    .sidebar-overlay[b-zkocd664xx] {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .sidebar-overlay.show[b-zkocd664xx] {
        display: block;
        opacity: 1;
    }
}

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

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

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

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

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

#blazor-error-ui[b-zkocd664xx] {
    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-zkocd664xx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/MarioShows.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-bgvpt15ipv] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: relative;
    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);
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 6px;
    flex-shrink: 0;
}

.navbar-toggler:hover[b-bgvpt15ipv] {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:checked[b-bgvpt15ipv] {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Cacher le bouton sur desktop */
@media (min-width: 641px) {
    .navbar-toggler[b-bgvpt15ipv] {
        display: none;
    }
}

.top-row[b-bgvpt15ipv] {
    min-height: 3.5rem;
    background: linear-gradient(135deg, rgba(5, 39, 103, 0.8) 0%, rgba(58, 6, 71, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Sur desktop, le top-row reste relatif */
@media (min-width: 641px) {
    .top-row[b-bgvpt15ipv] {
        position: relative;
    }
}

.top-row[b-bgvpt15ipv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer-b-bgvpt15ipv 3s infinite;
}

@keyframes shimmer-b-bgvpt15ipv {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.navbar-brand[b-bgvpt15ipv] {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.navbar-brand:hover[b-bgvpt15ipv] {
    transform: translateX(3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.brand-icon[b-bgvpt15ipv] {
    font-size: 1.5rem;
    display: inline-block;
    animation: float-b-bgvpt15ipv 3s ease-in-out infinite;
}

@keyframes float-b-bgvpt15ipv {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.brand-text[b-bgvpt15ipv] {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bi[b-bgvpt15ipv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    transition: all 0.3s ease;
}

.nav-icon[b-bgvpt15ipv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-text[b-bgvpt15ipv] {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-indicator[b-bgvpt15ipv] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bi-house-door-fill-nav-menu[b-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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-bgvpt15ipv] {
    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");
}

.bi-calendar-event[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-calendar-check[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-star-fill[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-star-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z'/%3E%3C/svg%3E");
}

.bi-check-circle-fill[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5a.75.75 0 0 0-.022-1.08z'/%3E%3C/svg%3E");
}

.bi-graph-up[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-graph-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z'/%3E%3C/svg%3E");
}

.bi-share[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-share' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z'/%3E%3C/svg%3E");
}

.bi-search[b-bgvpt15ipv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.nav-section[b-bgvpt15ipv] {
    padding: 0.5rem 0;
}

.nav-divider[b-bgvpt15ipv] {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 0.75rem 1rem;
    position: relative;
}

.nav-divider[b-bgvpt15ipv]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-item[b-bgvpt15ipv] {
    font-size: 0.95rem;
    padding: 0.25rem 0;
    position: relative;
}

.nav-item[b-bgvpt15ipv]  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    background: none;
    border: none;
    border-radius: 12px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
    padding: 0 1rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin: 0 0.5rem;
}

.nav-item[b-bgvpt15ipv]  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-item[b-bgvpt15ipv]  .nav-link:hover {
    color: white;
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-item[b-bgvpt15ipv]  .nav-link:hover::before {
    opacity: 1;
}

.nav-item[b-bgvpt15ipv]  .nav-link:hover .nav-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.nav-item[b-bgvpt15ipv]  .nav-link:hover .nav-indicator {
    transform: translateY(-50%) scaleY(1);
}

.nav-item[b-bgvpt15ipv]  a.active {
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.nav-item[b-bgvpt15ipv]  a.active::before {
    opacity: 1;
}

.nav-item[b-bgvpt15ipv]  a.active .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

.nav-item[b-bgvpt15ipv]  a.active .nav-indicator {
    transform: translateY(-50%) scaleY(1);
}

.nav-item[b-bgvpt15ipv]  button.nav-link {
    cursor: pointer;
    text-align: left;
    font-size: inherit;
    font-family: inherit;
}

.nav-scrollable[b-bgvpt15ipv] {
    display: none;
    padding: 1rem 0;
    animation: slideIn-b-bgvpt15ipv 0.3s ease-out;
}

/* Sur mobile, afficher le nav-scrollable quand la sidebar est ouverte */
@media (max-width: 640.98px) {
    /* Le nav-scrollable doit être visible quand le checkbox est coché OU quand la sidebar est ouverte */
    .sidebar.open .nav-scrollable[b-bgvpt15ipv],
    .navbar-toggler:checked ~ .nav-scrollable[b-bgvpt15ipv] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

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

.navbar-toggler:checked ~ .nav-scrollable[b-bgvpt15ipv] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Sur mobile, afficher le nav-scrollable quand la sidebar est ouverte */
@media (max-width: 640.98px) {
    .sidebar.open .nav-scrollable[b-bgvpt15ipv] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Mobile optimizations */
@media (max-width: 640.98px) {
    .navbar-toggler[b-bgvpt15ipv] {
        display: block;
        position: relative;
        z-index: 1002;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }

    /* Le top-row doit être fixe et toujours visible, même quand la sidebar est fermée */
    /* Utiliser un sélecteur très spécifique pour éviter les conflits */
    .sidebar .top-row[b-bgvpt15ipv],
    .top-row[b-bgvpt15ipv] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        z-index: 9999 !important;
        background: linear-gradient(135deg, rgba(5, 39, 103, 0.95) 0%, rgba(58, 6, 71, 0.95) 100%) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
        min-height: 3.5rem !important;
        height: 3.5rem !important;
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        margin: 0 !important;
        padding: 0 1rem !important;
    }

    /* Forcer le top-row à sortir du contexte de la sidebar */
    .sidebar .top-row[b-bgvpt15ipv] {
        position: fixed !important;
        transform: translateX(0) !important;
        will-change: auto !important;
    }

    /* S'assurer que le bouton hamburger est toujours visible */
    .navbar-toggler[b-bgvpt15ipv] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10000 !important;
        position: relative !important;
    }

    .nav-scrollable[b-bgvpt15ipv] {
        padding-top: 3.5rem;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        transform: none !important;
    }

    /* Quand la sidebar est ouverte OU le checkbox est coché, le nav-scrollable doit être visible */
    .sidebar.open .nav-scrollable[b-bgvpt15ipv],
    .navbar-toggler:checked ~ .nav-scrollable[b-bgvpt15ipv] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav[b-bgvpt15ipv] {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-section[b-bgvpt15ipv] {
        width: 100%;
        padding: 0.5rem 0;
        display: block !important;
        visibility: visible !important;
    }

    .nav-divider[b-bgvpt15ipv] {
        margin: 0.75rem 1rem;
        width: calc(100% - 2rem);
        display: block !important;
        visibility: visible !important;
    }

    .nav-item[b-bgvpt15ipv] {
        width: 100%;
        padding: 0.25rem 0;
        margin: 0;
        display: block !important;
        visibility: visible !important;
    }

    .nav-item[b-bgvpt15ipv]  .nav-link {
        height: 3.5rem;
        font-size: 1rem;
        padding: 0;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        box-sizing: border-box;
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Masquer le texte, garder seulement les icônes sur mobile */
    .nav-item[b-bgvpt15ipv]  .nav-text {
        display: none !important;
        visibility: hidden !important;
    }

    /* Centrer les icônes - plus grandes sur mobile */
    .nav-item[b-bgvpt15ipv]  .nav-icon {
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 2.5rem;
        height: 2.5rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
    }

    /* Masquer l'indicateur sur mobile */
    .nav-item[b-bgvpt15ipv]  .nav-indicator {
        display: none !important;
        visibility: hidden !important;
    }

    .nav-icon[b-bgvpt15ipv] {
        width: 2rem;
        height: 2rem;
        margin-right: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .brand-text[b-bgvpt15ipv] {
        font-size: 1.1rem;
    }

    .brand-icon[b-bgvpt15ipv] {
        font-size: 1.3rem;
    }

    /* S'assurer que tous les éléments sont visibles */
    .nav-item[b-bgvpt15ipv]  * {
        visibility: visible !important;
    }

    .nav-section *[b-bgvpt15ipv] {
        visibility: visible !important;
    }
}

.nav[b-bgvpt15ipv] {
    position: relative;
}

.nav[b-bgvpt15ipv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 1.5rem 0;
    }

    .nav-scrollable[b-bgvpt15ipv]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-bgvpt15ipv]::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .nav-scrollable[b-bgvpt15ipv]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .nav-scrollable[b-bgvpt15ipv]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}
/* _content/MarioShows.Web/Components/Pages/Home.razor.rz.scp.css */
/* Landing Page Styles */
.landing-page[b-u4pk0n4elc] {
    width: 100%;
    min-height: calc(100vh - 3.5rem);
    margin: 0;
    padding: 0;
}

/* Override content padding for landing page */
[b-u4pk0n4elc](.content) {
    padding: 0 !important;
}

/* Hero Section */
.hero-section[b-u4pk0n4elc] {
    background: linear-gradient(135deg, #052767 0%, #3a0647 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section[b-u4pk0n4elc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content[b-u4pk0n4elc] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title[b-u4pk0n4elc] {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown-b-u4pk0n4elc 0.8s ease-out;
}

.hero-subtitle[b-u4pk0n4elc] {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInDown-b-u4pk0n4elc 0.8s ease-out 0.2s both;
}

.hero-description[b-u4pk0n4elc] {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown-b-u4pk0n4elc 0.8s ease-out 0.4s both;
}

.hero-actions[b-u4pk0n4elc] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp-b-u4pk0n4elc 0.8s ease-out 0.6s both;
}

.hero-actions .btn[b-u4pk0n4elc] {
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn:hover[b-u4pk0n4elc] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn .bi[b-u4pk0n4elc] {
    margin-right: 8px;
}

/* Features Section */
.features-section[b-u4pk0n4elc] {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container[b-u4pk0n4elc] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title[b-u4pk0n4elc] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #052767;
}

.features-grid[b-u4pk0n4elc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card[b-u4pk0n4elc] {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover[b-u4pk0n4elc] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-u4pk0n4elc] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #052767 0%, #3a0647 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3[b-u4pk0n4elc] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #052767;
}

.feature-card p[b-u4pk0n4elc] {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section[b-u4pk0n4elc] {
    background: linear-gradient(135deg, #052767 0%, #3a0647 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content[b-u4pk0n4elc] {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2[b-u4pk0n4elc] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p[b-u4pk0n4elc] {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn[b-u4pk0n4elc] {
    padding: 14px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover[b-u4pk0n4elc] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-content .btn .bi[b-u4pk0n4elc] {
    margin-right: 8px;
}

/* Authenticated User Home */
.home-container[b-u4pk0n4elc] {
    padding: 40px 20px;
}

.welcome-section[b-u4pk0n4elc] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.welcome-section h1[b-u4pk0n4elc] {
    font-size: 3rem;
    font-weight: 700;
    color: #052767;
    margin-bottom: 1rem;
}

.welcome-section .lead[b-u4pk0n4elc] {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.quick-actions[b-u4pk0n4elc] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-actions .btn[b-u4pk0n4elc] {
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.quick-actions .btn .bi[b-u4pk0n4elc] {
    margin-right: 8px;
}

/* Animations */
@keyframes fadeInDown-b-u4pk0n4elc {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-u4pk0n4elc {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section[b-u4pk0n4elc] {
        padding: 60px 15px;
    }

    .hero-title[b-u4pk0n4elc] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-u4pk0n4elc] {
        font-size: 1.4rem;
    }

    .hero-description[b-u4pk0n4elc] {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-actions[b-u4pk0n4elc] {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn[b-u4pk0n4elc] {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .features-section[b-u4pk0n4elc] {
        padding: 50px 15px;
    }

    .features-grid[b-u4pk0n4elc] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card[b-u4pk0n4elc] {
        padding: 2rem 1.5rem;
    }

    .section-title[b-u4pk0n4elc] {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta-section[b-u4pk0n4elc] {
        padding: 60px 15px;
    }

    .cta-content h2[b-u4pk0n4elc] {
        font-size: 2rem;
    }

    .cta-content p[b-u4pk0n4elc] {
        font-size: 1rem;
    }

    .welcome-section[b-u4pk0n4elc] {
        padding: 40px 15px;
    }

    .welcome-section h1[b-u4pk0n4elc] {
        font-size: 2rem;
    }

    .welcome-section .lead[b-u4pk0n4elc] {
        font-size: 1.2rem;
    }

    .quick-actions[b-u4pk0n4elc] {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-actions .btn[b-u4pk0n4elc] {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-section[b-u4pk0n4elc] {
        padding: 40px 10px;
    }

    .hero-title[b-u4pk0n4elc] {
        font-size: 2rem;
    }

    .hero-subtitle[b-u4pk0n4elc] {
        font-size: 1.2rem;
    }

    .hero-description[b-u4pk0n4elc] {
        font-size: 0.9rem;
    }

    .features-section[b-u4pk0n4elc] {
        padding: 40px 10px;
    }

    .feature-card[b-u4pk0n4elc] {
        padding: 1.5rem 1rem;
    }

    .feature-icon[b-u4pk0n4elc] {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3[b-u4pk0n4elc] {
        font-size: 1.2rem;
    }

    .section-title[b-u4pk0n4elc] {
        font-size: 1.75rem;
    }

    .cta-section[b-u4pk0n4elc] {
        padding: 40px 10px;
    }

    .cta-content h2[b-u4pk0n4elc] {
        font-size: 1.75rem;
    }

    .home-container[b-u4pk0n4elc] {
        padding: 20px 10px;
    }

    .welcome-section[b-u4pk0n4elc] {
        padding: 30px 10px;
    }

    .welcome-section h1[b-u4pk0n4elc] {
        font-size: 1.75rem;
    }
}

/* _content/MarioShows.Web/Components/Planning/Planning.razor.rz.scp.css */
.planning-container[b-bre9h209ei] {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.planning-header[b-bre9h209ei] {
    margin-bottom: 30px;
}

.planning-header h2[b-bre9h209ei] {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planning-content[b-bre9h209ei] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.planning-section[b-bre9h209ei] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header[b-bre9h209ei] {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
}

.section-header:hover[b-bre9h209ei] {
    background: #e9ecef;
}

.section-header h3[b-bre9h209ei] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 0.5px;
}

.expand-icon[b-bre9h209ei] {
    color: #6c757d;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.section-header.expanded .expand-icon[b-bre9h209ei] {
    transform: rotate(180deg);
}

.section-content[b-bre9h209ei] {
    padding: 0;
}

.planning-item[b-bre9h209ei] {
    display: grid;
    grid-template-columns: 100px 150px 1fr;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
    transition: background 0.2s;
}

.planning-item:hover[b-bre9h209ei] {
    background: #f8f9fa;
}

.planning-item:last-child[b-bre9h209ei] {
    border-bottom: none;
}

.item-date[b-bre9h209ei] {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: lowercase;
}

.item-info[b-bre9h209ei] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-series-name[b-bre9h209ei] {
    font-weight: 600;
    font-size: 0.95rem;
}

.item-episode[b-bre9h209ei] {
    font-size: 0.85rem;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.item-title[b-bre9h209ei] {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    transition: color 0.2s;
}

.item-title:hover[b-bre9h209ei] {
    color: #007bff;
    text-decoration: underline;
}

.item-actions[b-bre9h209ei] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom Checkbox */
.checkbox-container[b-bre9h209ei] {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.checkbox-container input[b-bre9h209ei] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark[b-bre9h209ei] {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.2s;
}

.checkbox-container:hover .checkmark[b-bre9h209ei] {
    border-color: #007bff;
}

.checkbox-container input:checked ~ .checkmark[b-bre9h209ei] {
    background-color: #007bff;
    border-color: #007bff;
}

.checkmark[b-bre9h209ei]:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark[b-bre9h209ei]:after {
    display: block;
}

.checkbox-container .checkmark[b-bre9h209ei]:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:disabled ~ .checkmark[b-bre9h209ei] {
    background-color: #e9ecef;
    border-color: #ced4da;
    cursor: not-allowed;
    opacity: 0.6;
}

.checkbox-container input:disabled ~ .checkmark[b-bre9h209ei]:after {
    display: none;
}

.checkbox-container:hover input:disabled ~ .checkmark[b-bre9h209ei] {
    border-color: #ced4da;
}

.no-planning[b-bre9h209ei] {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-planning p[b-bre9h209ei] {
    margin-top: 15px;
    font-size: 1.1rem;
}

.no-planning-items[b-bre9h209ei] {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.no-planning-items i[b-bre9h209ei] {
    font-size: 2.5rem;
    opacity: 0.4;
    margin-bottom: 10px;
    display: block;
}

.no-planning-items p[b-bre9h209ei] {
    margin: 0;
    font-size: 0.95rem;
    color: #868e96;
}

/* Responsive */
@media (max-width: 768px) {
    .planning-container[b-bre9h209ei] {
        padding: 15px;
    }

    .planning-header h1[b-bre9h209ei] {
        font-size: 1.75rem;
    }

    .planning-item[b-bre9h209ei] {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .item-date[b-bre9h209ei] {
        font-weight: 600;
        font-size: 0.95rem;
    }

    .item-info[b-bre9h209ei] {
        flex-direction: row;
        gap: 10px;
        align-items: baseline;
    }

    .item-title[b-bre9h209ei] {
        font-size: 1rem;
    }

    .item-meta[b-bre9h209ei] {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .planning-container[b-bre9h209ei] {
        padding: 10px;
    }

    .planning-header h1[b-bre9h209ei] {
        font-size: 1.5rem;
    }

    .planning-item[b-bre9h209ei] {
        padding: 10px;
    }

    .item-date[b-bre9h209ei] {
        font-size: 0.9rem;
    }

    .item-title[b-bre9h209ei] {
        font-size: 0.95rem;
    }

    .item-meta[b-bre9h209ei] {
        font-size: 0.8rem;
    }

    .no-planning-items i[b-bre9h209ei] {
        font-size: 2rem;
    }

    .no-planning-items p[b-bre9h209ei] {
        font-size: 0.9rem;
    }
}

/* _content/MarioShows.Web/Components/Snackbar/Snackbar.razor.rz.scp.css */
.snackbar-container[b-hxs81icw20] {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    pointer-events: none;
    max-width: 100%;
}

.snackbar-bottom-left[b-hxs81icw20] {
    bottom: 0;
    left: 0;
    align-items: flex-start;
}

.snackbar-bottom-right[b-hxs81icw20] {
    bottom: 0;
    right: 0;
    align-items: flex-end;
}

.snackbar-top-left[b-hxs81icw20] {
    top: 0;
    left: 0;
    align-items: flex-start;
}

.snackbar-top-right[b-hxs81icw20] {
    top: 0;
    right: 0;
    align-items: flex-end;
}

.snackbar[b-hxs81icw20] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 500px;
    padding: 14px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 14px;
    font-weight: 500;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.snackbar-success[b-hxs81icw20] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.snackbar-error[b-hxs81icw20] {
    background: linear-gradient(135deg, #dc3545 0%, #e63946 100%);
}

.snackbar-warning[b-hxs81icw20] {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
}

.snackbar-info[b-hxs81icw20] {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
}

.snackbar-icon[b-hxs81icw20] {
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snackbar-message[b-hxs81icw20] {
    flex: 1;
    line-height: 1.5;
    word-break: break-word;
}

.snackbar-close[b-hxs81icw20] {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 18px;
    flex-shrink: 0;
}

.snackbar-close:hover[b-hxs81icw20] {
    background-color: rgba(255, 255, 255, 0.2);
}

.snackbar-close:active[b-hxs81icw20] {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Animations d'entrée */
@keyframes slideInFromLeft-b-hxs81icw20 {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight-b-hxs81icw20 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop-b-hxs81icw20 {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.snackbar-bottom-left .snackbar-enter[b-hxs81icw20],
.snackbar-top-left .snackbar-enter[b-hxs81icw20] {
    animation: slideInFromLeft-b-hxs81icw20 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snackbar-bottom-right .snackbar-enter[b-hxs81icw20],
.snackbar-top-right .snackbar-enter[b-hxs81icw20] {
    animation: slideInFromRight-b-hxs81icw20 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snackbar-top-left .snackbar-enter[b-hxs81icw20],
.snackbar-top-right .snackbar-enter[b-hxs81icw20] {
    animation: slideInFromTop-b-hxs81icw20 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .snackbar-container[b-hxs81icw20] {
        padding: 12px;
        left: 0 !important;
        right: 0 !important;
        align-items: center !important;
    }

    .snackbar[b-hxs81icw20] {
        min-width: unset;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

    .snackbar-bottom-left[b-hxs81icw20],
    .snackbar-bottom-right[b-hxs81icw20] {
        bottom: 0;
    }

    .snackbar-top-left[b-hxs81icw20],
    .snackbar-top-right[b-hxs81icw20] {
        top: 0;
    }

    /* Animation centrée pour mobile */
    .snackbar-bottom-left .snackbar-enter[b-hxs81icw20],
    .snackbar-bottom-right .snackbar-enter[b-hxs81icw20] {
        animation: slideInFromBottom-b-hxs81icw20 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInFromBottom-b-hxs81icw20 {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .snackbar[b-hxs81icw20] {
        font-size: 13px;
        padding: 12px 14px;
    }

    .snackbar-icon[b-hxs81icw20] {
        font-size: 18px;
    }
}

/* Effet hover sur desktop */
@media (min-width: 769px) {
    .snackbar:hover[b-hxs81icw20] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
    }
}

/* _content/MarioShows.Web/Features/Calendar/CalendarPage.razor.rz.scp.css */
.loading-container[b-tlna85taug] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.loading-container p[b-tlna85taug] {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.alert[b-tlna85taug] {
    margin: 20px auto;
    max-width: 1200px;
}

.show-episode-title[b-tlna85taug] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.show-platform-icon[b-tlna85taug] {
    font-size: 0.8rem;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .loading-container[b-tlna85taug] {
        padding: 40px 15px;
    }

    .alert[b-tlna85taug] {
        margin: 15px 10px;
    }

    .show-episode-title[b-tlna85taug] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .loading-container[b-tlna85taug] {
        padding: 30px 10px;
    }

    .loading-container p[b-tlna85taug] {
        font-size: 0.9rem;
    }

    .alert[b-tlna85taug] {
        margin: 10px 5px;
        font-size: 0.9rem;
    }

    .show-episode-title[b-tlna85taug] {
        font-size: 0.85rem;
    }

    .show-platform-icon[b-tlna85taug] {
        font-size: 0.75rem;
    }
}

/* _content/MarioShows.Web/Features/Details/MovieDetails/MovieDetailsPage.razor.rz.scp.css */
.show-details-container[b-cpwrsyood9] {
    min-height: 80vh;
}

.show-backdrop[b-cpwrsyood9] {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.backdrop-overlay[b-cpwrsyood9] {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
}

.show-poster[b-cpwrsyood9] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.poster-placeholder[b-cpwrsyood9] {
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.show-header-info[b-cpwrsyood9] {
    color: white;
}

.show-meta[b-cpwrsyood9] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.genres[b-cpwrsyood9] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.genre-tag[b-cpwrsyood9] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.card[b-cpwrsyood9] {
    border: none;
    border-radius: 12px;
}

.card-title[b-cpwrsyood9] {
    font-weight: 600;
    margin-bottom: 1rem;
}

.table th[b-cpwrsyood9] {
    font-weight: 600;
    color: #666;
}

.btn[b-cpwrsyood9] {
    border-radius: 8px;
    font-weight: 500;
}

.platform-badge-logo[b-cpwrsyood9] {
    height: 16px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 5px;
}

.platform-logo-inline[b-cpwrsyood9] {
    height: 20px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .show-backdrop[b-cpwrsyood9] {
        min-height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .backdrop-overlay[b-cpwrsyood9] {
        padding: 20px 0;
    }
    
    .show-header-info[b-cpwrsyood9] {
        padding: 0 15px;
    }

    .show-header-info h1[b-cpwrsyood9] {
        font-size: 1.75rem;
    }

    .show-meta[b-cpwrsyood9] {
        gap: 8px;
    }

    .genre-tag[b-cpwrsyood9] {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .card[b-cpwrsyood9] {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .show-backdrop[b-cpwrsyood9] {
        border-radius: 0;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 15px;
    }

    .backdrop-overlay[b-cpwrsyood9] {
        padding: 15px 0;
    }

    .show-header-info[b-cpwrsyood9] {
        padding: 0 10px;
    }

    .show-header-info h1[b-cpwrsyood9] {
        font-size: 1.5rem;
    }

    .show-meta[b-cpwrsyood9] {
        gap: 6px;
    }

    .genre-tag[b-cpwrsyood9] {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .card[b-cpwrsyood9] {
        margin-bottom: 12px;
    }

    .platform-badge-logo[b-cpwrsyood9] {
        height: 14px;
    }

    .platform-logo-inline[b-cpwrsyood9] {
        height: 18px;
    }
}

/* _content/MarioShows.Web/Features/Details/SeriesDetails/SeriesDetailsPage.razor.rz.scp.css */
.show-details-container[b-67q9rlfzgl] {
    min-height: 80vh;
}

/* ============================================
   LOADING OVERLAY
   Overlay plein écran pour le chargement initial
   ============================================ */

.loading-overlay[b-67q9rlfzgl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn-b-67q9rlfzgl 0.3s ease;
}

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

.loading-container[b-67q9rlfzgl] {
    max-width: 500px;
    width: 100%;
    padding: 20px;
}

.loading-content[b-67q9rlfzgl] {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.loading-content h4[b-67q9rlfzgl] {
    color: #333;
    font-weight: 600;
}

.loading-content .progress[b-67q9rlfzgl] {
    margin: 0 auto;
}

/* ============================================
   TOAST POUR PROGRESSION D'ACTIONS
   ============================================ */

.toast[b-67q9rlfzgl] {
    min-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header[b-67q9rlfzgl] {
    border-bottom: none;
}

.toast-body .progress[b-67q9rlfzgl] {
    margin-bottom: 0;
}

.show-backdrop[b-67q9rlfzgl] {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.backdrop-overlay[b-67q9rlfzgl] {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
}

.show-poster[b-67q9rlfzgl] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.poster-placeholder[b-67q9rlfzgl] {
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.show-header-info[b-67q9rlfzgl] {
    color: white;
}

.show-meta[b-67q9rlfzgl] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.genres[b-67q9rlfzgl] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.genre-tag[b-67q9rlfzgl] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.card[b-67q9rlfzgl] {
    border: none;
    border-radius: 12px;
}

.card-title[b-67q9rlfzgl] {
    font-weight: 600;
    margin-bottom: 1rem;
}

.table th[b-67q9rlfzgl] {
    font-weight: 600;
    color: #666;
}

.btn[b-67q9rlfzgl] {
    border-radius: 8px;
    font-weight: 500;
}

.platform-badge-logo[b-67q9rlfzgl] {
    height: 16px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 5px;
}

.platform-logo-inline[b-67q9rlfzgl] {
    height: 20px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 8px;
}

/* ============================================
   SAISONS ET ÉPISODES
   ============================================ */

/* Liste des saisons */
.seasons-list[b-67q9rlfzgl] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Carte de saison */
.season-card[b-67q9rlfzgl] {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    background: white;
}

.season-card:hover[b-67q9rlfzgl] {
    box-shadow: var(--shadow-md);
}

/* Saison complètement vue */
.season-card.season-fully-watched[b-67q9rlfzgl] {
    border: 2px solid #28a745;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.season-card.season-fully-watched .season-header[b-67q9rlfzgl] {
    background: linear-gradient(135deg, #e8f5e9 0%, #f8f9fa 100%);
}

.season-card.season-fully-watched:hover[b-67q9rlfzgl] {
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* En-tête de saison (cliquable) */
.season-header[b-67q9rlfzgl] {
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
    background: #f8f9fa;
}

.season-header:hover[b-67q9rlfzgl] {
    background: #e9ecef;
}

.season-poster[b-67q9rlfzgl] {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.season-meta[b-67q9rlfzgl] {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.expand-icon[b-67q9rlfzgl] {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform var(--transition-fast);
}

/* Liste des épisodes */
.season-episodes[b-67q9rlfzgl] {
    padding: var(--spacing-lg);
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    animation: slideDown-b-67q9rlfzgl var(--transition-normal) ease;
}

@keyframes slideDown-b-67q9rlfzgl {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 5000px;
    }
}

.season-overview[b-67q9rlfzgl] {
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
    line-height: 1.6;
}

.episodes-list[b-67q9rlfzgl] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Carte d'épisode */
.episode-card[b-67q9rlfzgl] {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border-left: 4px solid transparent;
}

.episode-card:hover[b-67q9rlfzgl] {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.episode-card.watched[b-67q9rlfzgl] {
    border-left-color: var(--success-color);
    opacity: 0.85;
}

.episode-content[b-67q9rlfzgl] {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.episode-still[b-67q9rlfzgl] {
    width: 200px;
    height: 112px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.episode-info[b-67q9rlfzgl] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.episode-header[b-67q9rlfzgl] {
    margin-bottom: var(--spacing-xs);
}

.episode-title[b-67q9rlfzgl] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.episode-number[b-67q9rlfzgl] {
    display: inline-block;
    min-width: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.watched-badge[b-67q9rlfzgl] {
    display: inline-block;
    background: var(--success-color);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: var(--spacing-sm);
    font-weight: 600;
}

.episode-meta[b-67q9rlfzgl] {
    font-size: 0.85rem;
    color: var(--secondary-color);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.episode-overview[b-67q9rlfzgl] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Statistiques de progression */
.stats[b-67q9rlfzgl] {
    padding: var(--spacing-md) 0;
}

.stat-item[b-67q9rlfzgl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.stat-label[b-67q9rlfzgl] {
    font-weight: 500;
    color: var(--secondary-color);
}

.stat-value[b-67q9rlfzgl] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .show-backdrop[b-67q9rlfzgl] {
        min-height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .backdrop-overlay[b-67q9rlfzgl] {
        padding: 20px 0;
    }
    
    .show-header-info h1[b-67q9rlfzgl] {
        font-size: 1.75rem;
    }

    .show-header-info[b-67q9rlfzgl] {
        padding: 0 15px;
    }

    .show-meta[b-67q9rlfzgl] {
        gap: 8px;
    }

    .genre-tag[b-67q9rlfzgl] {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .season-poster[b-67q9rlfzgl] {
        width: 60px;
        height: 90px;
    }
    
    .episode-content[b-67q9rlfzgl] {
        flex-direction: column;
    }
    
    .episode-still[b-67q9rlfzgl] {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .episode-meta[b-67q9rlfzgl] {
        font-size: 0.8rem;
    }

    .loading-content[b-67q9rlfzgl] {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .show-backdrop[b-67q9rlfzgl] {
        border-radius: 0;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 15px;
    }

    .backdrop-overlay[b-67q9rlfzgl] {
        padding: 15px 0;
    }

    .show-header-info[b-67q9rlfzgl] {
        padding: 0 10px;
    }

    .show-header-info h1[b-67q9rlfzgl] {
        font-size: 1.5rem;
    }

    .show-meta[b-67q9rlfzgl] {
        gap: 6px;
    }

    .genre-tag[b-67q9rlfzgl] {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .season-poster[b-67q9rlfzgl] {
        width: 50px;
        height: 75px;
    }

    .episode-meta[b-67q9rlfzgl] {
        font-size: 0.75rem;
    }

    .loading-content[b-67q9rlfzgl] {
        padding: 20px 15px;
    }

    .loading-content h4[b-67q9rlfzgl] {
        font-size: 1rem;
    }
}

/* _content/MarioShows.Web/Features/Details/Shared/Components/MediaSection.razor.rz.scp.css */
/* Section média */
.media-section[b-06om457j5c] {
    padding: 2rem 0;
}

.section-title[b-06om457j5c] {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

/* Onglets */
.nav-tabs[b-06om457j5c] {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link[b-06om457j5c] {
    color: #6c757d;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}

.nav-tabs .nav-link:hover[b-06om457j5c] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: transparent;
}

.nav-tabs .nav-link.active[b-06om457j5c] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: transparent;
}

.nav-tabs .nav-link i[b-06om457j5c] {
    margin-right: 0.5rem;
}

/* État vide */
.empty-state[b-06om457j5c] {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Carte vidéo */
.video-card[b-06om457j5c] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover[b-06om457j5c] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-thumbnail[b-06om457j5c] {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-thumbnail img[b-06om457j5c] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img[b-06om457j5c] {
    transform: scale(1.05);
}

.play-overlay[b-06om457j5c] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay[b-06om457j5c] {
    opacity: 1;
}

.play-overlay i[b-06om457j5c] {
    font-size: 4rem;
    color: white;
}

.video-info[b-06om457j5c] {
    padding: 1rem;
}

.video-title[b-06om457j5c] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem;
}

.video-meta[b-06om457j5c] {
    display: flex;
    gap: 0.5rem;
}

/* Carte fond d'écran */
.backdrop-card[b-06om457j5c] {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.backdrop-card:hover[b-06om457j5c] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.backdrop-card img[b-06om457j5c] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.backdrop-card:hover img[b-06om457j5c] {
    transform: scale(1.05);
}

.backdrop-info[b-06om457j5c] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.backdrop-card:hover .backdrop-info[b-06om457j5c] {
    opacity: 1;
}

.backdrop-resolution[b-06om457j5c] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title[b-06om457j5c] {
        font-size: 1.5rem;
    }

    .nav-tabs .nav-link[b-06om457j5c] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .play-overlay i[b-06om457j5c] {
        font-size: 3rem;
    }

    .video-title[b-06om457j5c] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title[b-06om457j5c] {
        font-size: 1.25rem;
    }

    .nav-tabs[b-06om457j5c] {
        flex-wrap: wrap;
    }

    .nav-tabs .nav-link[b-06om457j5c] {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .play-overlay i[b-06om457j5c] {
        font-size: 2.5rem;
    }

    .video-title[b-06om457j5c] {
        font-size: 0.85rem;
    }
}

/* _content/MarioShows.Web/Features/Details/Shared/MediaGalleryPage.razor.rz.scp.css */
/* État vide */
.empty-state[b-el6tv50jjp] {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Carte vidéo */
.video-card[b-el6tv50jjp] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover[b-el6tv50jjp] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-thumbnail[b-el6tv50jjp] {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-thumbnail img[b-el6tv50jjp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img[b-el6tv50jjp] {
    transform: scale(1.05);
}

.play-overlay[b-el6tv50jjp] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay[b-el6tv50jjp] {
    opacity: 1;
}

.play-overlay i[b-el6tv50jjp] {
    font-size: 4rem;
    color: white;
}

.video-info[b-el6tv50jjp] {
    padding: 1rem;
}

.video-title[b-el6tv50jjp] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem;
}

.video-meta[b-el6tv50jjp] {
    display: flex;
    gap: 0.5rem;
}

/* Carte fond d'écran */
.backdrop-card[b-el6tv50jjp] {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.backdrop-card:hover[b-el6tv50jjp] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.backdrop-card img[b-el6tv50jjp] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.backdrop-card:hover img[b-el6tv50jjp] {
    transform: scale(1.05);
}

.backdrop-info[b-el6tv50jjp] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.backdrop-card:hover .backdrop-info[b-el6tv50jjp] {
    opacity: 1;
}

.backdrop-resolution[b-el6tv50jjp] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pagination */
.pagination[b-el6tv50jjp] {
    margin-bottom: 0;
}

.pagination .page-link[b-el6tv50jjp] {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 1px solid #dee2e6;
    color: #0d6efd;
    font-weight: 500;
}

.pagination .page-link:hover[b-el6tv50jjp] {
    background-color: #e9ecef;
}

.pagination .page-item.active .page-link[b-el6tv50jjp] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    z-index: 1;
}

.pagination .page-item.disabled .page-link[b-el6tv50jjp] {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
    .play-overlay i[b-el6tv50jjp] {
        font-size: 3rem;
    }

    .video-title[b-el6tv50jjp] {
        font-size: 0.9rem;
    }

    .pagination .page-link[b-el6tv50jjp] {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* _content/MarioShows.Web/Features/Favorites/Components/FavoriteCard.razor.rz.scp.css */
/* Carte de favori */
.favorite-card[b-s4hgsj1xi9] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.favorite-card:hover[b-s4hgsj1xi9] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.favorite-card:hover .favorite-delete-btn[b-s4hgsj1xi9] {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.favorite-poster[b-s4hgsj1xi9] {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.watched-badge[b-s4hgsj1xi9] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(25, 135, 84, 0.95);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.favorite-content[b-s4hgsj1xi9] {
    padding: 1rem;
}

.favorite-badges[b-s4hgsj1xi9] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.favorite-badges .badge[b-s4hgsj1xi9] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
}

.network-logo-small[b-s4hgsj1xi9] {
    height: 12px;
    width: auto;
    border-radius: 2px;
    vertical-align: middle;
}

.favorite-title[b-s4hgsj1xi9] {
    font-weight: 600;
    margin: 0.5rem 0;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem;
}

.favorite-meta[b-s4hgsj1xi9] {
    color: #6c757d;
    font-size: 0.85rem;
}

.favorite-rating[b-s4hgsj1xi9] {
    display: flex;
    align-items: center;
}

.favorite-note[b-s4hgsj1xi9] {
    font-style: italic;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.favorite-categories[b-s4hgsj1xi9] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.favorite-delete-btn[b-s4hgsj1xi9] {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

.favorite-delete-btn:hover:not(:disabled)[b-s4hgsj1xi9] {
    background-color: #bb2d3b;
    border-color: #b02a37;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.5);
}

.favorite-delete-btn:active:not(:disabled)[b-s4hgsj1xi9] {
    transform: scale(0.95);
}

.favorite-delete-btn:disabled[b-s4hgsj1xi9] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Garder le bouton visible si on est en train de traiter la suppression */
.favorite-card:hover .favorite-delete-btn:disabled[b-s4hgsj1xi9] {
    opacity: 0.7;
    pointer-events: auto;
}

.favorite-delete-btn i[b-s4hgsj1xi9] {
    font-size: 1rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .favorite-card[b-s4hgsj1xi9] {
        margin-bottom: 1rem;
    }

    .favorite-poster[b-s4hgsj1xi9] {
        height: 180px;
    }

    .favorite-content[b-s4hgsj1xi9] {
        padding: 0.75rem;
    }

    .favorite-title[b-s4hgsj1xi9] {
        font-size: 1rem;
        min-height: 2.25rem;
    }

    .favorite-meta[b-s4hgsj1xi9] {
        font-size: 0.8rem;
    }

    .favorite-categories[b-s4hgsj1xi9] {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .favorite-categories .form-select[b-s4hgsj1xi9] {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }

    .favorite-delete-btn[b-s4hgsj1xi9] {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .favorite-delete-btn i[b-s4hgsj1xi9] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .favorite-poster[b-s4hgsj1xi9] {
        height: 160px;
    }

    .favorite-content[b-s4hgsj1xi9] {
        padding: 0.6rem;
    }

    .favorite-title[b-s4hgsj1xi9] {
        font-size: 0.95rem;
        min-height: 2rem;
    }

    .favorite-badges .badge[b-s4hgsj1xi9] {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }

    .favorite-categories[b-s4hgsj1xi9] {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .favorite-categories .d-flex[b-s4hgsj1xi9] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .favorite-categories .d-flex > div[b-s4hgsj1xi9] {
        width: 100%;
    }

    .favorite-categories .form-select[b-s4hgsj1xi9] {
        width: 100% !important;
        font-size: 0.8rem;
    }
}

/* _content/MarioShows.Web/Features/Favorites/FavoritesPage.razor.rz.scp.css */
.favorites-header[b-f49y0rkrxt] {
    text-align: center;
    margin-bottom: 2rem;
}

.favorites-header h1[b-f49y0rkrxt] {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Statistiques */
.favorites-stats[b-f49y0rkrxt] {
    margin-bottom: 2rem;
}

.stat-card[b-f49y0rkrxt] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.stat-card:hover[b-f49y0rkrxt] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-card i[b-f49y0rkrxt] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value[b-f49y0rkrxt] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-label[b-f49y0rkrxt] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Filtres */
.favorites-filters[b-f49y0rkrxt] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.favorites-filters .form-label[b-f49y0rkrxt] {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.favorites-filters .btn-group[b-f49y0rkrxt] {
    display: flex;
    flex-wrap: wrap;
}

.favorites-filters .btn[b-f49y0rkrxt] {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.favorites-filters .btn i[b-f49y0rkrxt] {
    margin-right: 0.25rem;
}

.favorites-filters .vr[b-f49y0rkrxt] {
    margin: 0 1rem;
    opacity: 0.2;
}

/* Empty state */
.empty-favorites[b-f49y0rkrxt] {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .favorites-filters .vr[b-f49y0rkrxt] {
        display: none !important;
    }
    
    .favorites-filters .d-flex[b-f49y0rkrxt] {
        flex-direction: column !important;
    }
    
    .favorites-filters > div > div[b-f49y0rkrxt] {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .favorites-header[b-f49y0rkrxt] {
        margin-bottom: 1.5rem;
    }

    .favorites-header h1[b-f49y0rkrxt] {
        font-size: 1.75rem;
    }

    .favorites-header .lead[b-f49y0rkrxt] {
        font-size: 1rem;
    }

    .favorites-stats[b-f49y0rkrxt] {
        margin-bottom: 1.5rem;
    }

    .stat-card[b-f49y0rkrxt] {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .stat-card i[b-f49y0rkrxt] {
        font-size: 1.5rem;
    }

    .stat-value[b-f49y0rkrxt] {
        font-size: 1.5rem;
    }

    .stat-label[b-f49y0rkrxt] {
        font-size: 0.8rem;
    }
    
    .favorites-filters[b-f49y0rkrxt] {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .favorites-filters .form-label[b-f49y0rkrxt] {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .favorites-filters .btn-group[b-f49y0rkrxt] {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .favorites-filters .btn[b-f49y0rkrxt] {
        flex: 1 1 auto;
        min-width: calc(50% - 0.25rem);
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }

    .favorites-filters .btn i[b-f49y0rkrxt] {
        font-size: 0.7rem;
    }

    .empty-favorites[b-f49y0rkrxt] {
        padding: 2rem 1rem;
    }

    /* Forcer une seule colonne pour les cartes de favoris sur mobile */
    .row.g-4 > [class*="col-"][b-f49y0rkrxt] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .favorites-header h1[b-f49y0rkrxt] {
        font-size: 1.5rem;
    }

    .stat-card[b-f49y0rkrxt] {
        padding: 0.75rem;
    }

    .stat-card i[b-f49y0rkrxt] {
        font-size: 1.25rem;
    }

    .stat-value[b-f49y0rkrxt] {
        font-size: 1.25rem;
    }

    .favorites-filters[b-f49y0rkrxt] {
        padding: 0.75rem;
    }

    .favorites-filters .btn[b-f49y0rkrxt] {
        font-size: 0.7rem;
        padding: 0.35rem 0.4rem;
        min-width: calc(33.333% - 0.2rem);
    }

    .favorites-filters .btn-group[b-f49y0rkrxt] {
        gap: 0.25rem;
    }

    /* Forcer une seule colonne pour les cartes de favoris sur petit mobile */
    .row.g-4 > [class*="col-"][b-f49y0rkrxt] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* _content/MarioShows.Web/Features/Recherche/SearchPage.razor.rz.scp.css */
.search-container[b-wm4wvcxikx] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.search-header[b-wm4wvcxikx] {
    margin-bottom: 30px;
}

.search-header h2[b-wm4wvcxikx] {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box[b-wm4wvcxikx] {
    margin-bottom: 40px;
}

.search-box .input-group[b-wm4wvcxikx] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.search-box input[b-wm4wvcxikx] {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: text;
    -webkit-user-select: text;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    background-color: white;
}

.search-box input:focus[b-wm4wvcxikx] {
    box-shadow: none;
    border-color: #007bff;
    outline: 2px solid #007bff;
    outline-offset: -2px;
}

.search-box input:focus-visible[b-wm4wvcxikx] {
    outline: 2px solid #007bff;
    outline-offset: -2px;
}

.search-box button[b-wm4wvcxikx] {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
}

.search-placeholder[b-wm4wvcxikx] {
    text-align: center;
    padding: 100px 20px;
    color: #6c757d;
}

.search-placeholder i[b-wm4wvcxikx] {
    font-size: 5rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.search-placeholder p[b-wm4wvcxikx] {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.results-header[b-wm4wvcxikx] {
    margin-bottom: 30px;
}

.results-header h4[b-wm4wvcxikx] {
    color: #495057;
    font-weight: 600;
}

.results-grid[b-wm4wvcxikx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.no-results[b-wm4wvcxikx] {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.no-results i[b-wm4wvcxikx] {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-results p[b-wm4wvcxikx] {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .search-container[b-wm4wvcxikx] {
        padding: 15px;
    }

    .search-header[b-wm4wvcxikx] {
        margin-bottom: 20px;
    }

    .search-header h2[b-wm4wvcxikx] {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .search-box[b-wm4wvcxikx] {
        margin-bottom: 30px;
    }

    .search-box .input-group[b-wm4wvcxikx] {
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .search-box input[b-wm4wvcxikx] {
        padding: 12px 15px;
        font-size: 16px; /* Minimum 16px pour éviter le zoom automatique sur iOS */
        border-radius: 8px 8px 0 0;
        -webkit-appearance: none;
        appearance: none;
        touch-action: manipulation;
        pointer-events: auto;
        z-index: 1;
        position: relative;
    }

    .search-box input:focus[b-wm4wvcxikx] {
        outline: 2px solid #007bff;
        outline-offset: -2px;
        z-index: 2;
    }

    .search-box button[b-wm4wvcxikx] {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 0 0 8px 8px;
        width: 100%;
    }

    .results-grid[b-wm4wvcxikx] {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .results-header[b-wm4wvcxikx] {
        margin-bottom: 20px;
    }

    .results-header h4[b-wm4wvcxikx] {
        font-size: 1rem;
    }

    .search-placeholder[b-wm4wvcxikx] {
        padding: 60px 15px;
    }

    .search-placeholder i[b-wm4wvcxikx] {
        font-size: 4rem;
    }

    .search-placeholder p[b-wm4wvcxikx] {
        font-size: 1.1rem;
    }

    .no-results[b-wm4wvcxikx] {
        padding: 60px 15px;
    }

    .no-results i[b-wm4wvcxikx] {
        font-size: 3rem;
    }

    .no-results p[b-wm4wvcxikx] {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-container[b-wm4wvcxikx] {
        padding: 10px;
    }

    .search-header h2[b-wm4wvcxikx] {
        font-size: 1.25rem;
        gap: 10px;
    }

    .search-header h2 i[b-wm4wvcxikx] {
        font-size: 1.25rem;
    }

    .search-box input[b-wm4wvcxikx] {
        padding: 12px 15px;
        font-size: 16px; /* Minimum 16px pour éviter le zoom automatique sur iOS */
        -webkit-appearance: none;
        appearance: none;
        touch-action: manipulation;
        pointer-events: auto;
        z-index: 1;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    .search-box input:focus[b-wm4wvcxikx] {
        outline: 2px solid #007bff;
        outline-offset: -2px;
        z-index: 2;
    }

    .search-box .input-group[b-wm4wvcxikx] {
        position: relative;
        z-index: 1;
    }

    .search-box button[b-wm4wvcxikx] {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .results-grid[b-wm4wvcxikx] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-placeholder[b-wm4wvcxikx] {
        padding: 40px 10px;
    }

    .search-placeholder i[b-wm4wvcxikx] {
        font-size: 3rem;
    }

    .search-placeholder p[b-wm4wvcxikx] {
        font-size: 1rem;
    }

    .no-results[b-wm4wvcxikx] {
        padding: 40px 10px;
    }

    .no-results i[b-wm4wvcxikx] {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .results-grid[b-wm4wvcxikx] {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* _content/MarioShows.Web/Features/Shares/SharedWith/Components/AddShareModal.razor.rz.scp.css */
.modal-backdrop[b-wmexisuoj7] {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal[b-wmexisuoj7] {
    overflow-y: auto;
}

.modal-dialog[b-wmexisuoj7] {
    max-width: 500px;
}

.modal-content[b-wmexisuoj7] {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header[b-wmexisuoj7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

.modal-title[b-wmexisuoj7] {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.btn-close[b-wmexisuoj7] {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover[b-wmexisuoj7] {
    opacity: 1;
}

.modal-body[b-wmexisuoj7] {
    padding: 1.5rem;
}

.alert[b-wmexisuoj7] {
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.alert-danger[b-wmexisuoj7] {
    background-color: #fee;
    color: #c33;
}

.form-label[b-wmexisuoj7] {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control[b-wmexisuoj7] {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus[b-wmexisuoj7] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control:disabled[b-wmexisuoj7] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-text[b-wmexisuoj7] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.info-box[b-wmexisuoj7] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-box i[b-wmexisuoj7] {
    color: #667eea;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-box strong[b-wmexisuoj7] {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.info-box p[b-wmexisuoj7] {
    color: #555;
    line-height: 1.5;
}

.modal-footer[b-wmexisuoj7] {
    border-top: 1px solid #e0e0e0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn[b-wmexisuoj7] {
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn:disabled[b-wmexisuoj7] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-wmexisuoj7] {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled)[b-wmexisuoj7] {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.btn-primary[b-wmexisuoj7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-wmexisuoj7] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.spinner-border-sm[b-wmexisuoj7] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-dialog[b-wmexisuoj7] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .modal-header[b-wmexisuoj7],
    .modal-body[b-wmexisuoj7],
    .modal-footer[b-wmexisuoj7] {
        padding: 1rem;
    }

    .modal-title[b-wmexisuoj7] {
        font-size: 1.125rem;
    }

    .btn[b-wmexisuoj7] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
/* _content/MarioShows.Web/Features/Shares/SharedWith/Components/ShareCard.razor.rz.scp.css */
.share-card[b-8xpl1ip2kd] {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
}

.share-card:hover[b-8xpl1ip2kd] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.card-click-indicator[b-8xpl1ip2kd] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.share-card:hover .card-click-indicator[b-8xpl1ip2kd] {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.share-header[b-8xpl1ip2kd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.share-user-info[b-8xpl1ip2kd] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar[b-8xpl1ip2kd] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.user-details[b-8xpl1ip2kd] {
    display: flex;
    flex-direction: column;
}

.user-name[b-8xpl1ip2kd] {
    margin: 0;
    font-weight: 600;
    color: white;
}

.user-email[b-8xpl1ip2kd] {
    font-size: 0.875rem;
}

.share-type-badge[b-8xpl1ip2kd] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-info[b-8xpl1ip2kd] {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-status[b-8xpl1ip2kd] {
    margin-bottom: 1rem;
}

.share-actions[b-8xpl1ip2kd] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.share-actions .btn[b-8xpl1ip2kd] {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.share-actions .btn:hover:not(:disabled)[b-8xpl1ip2kd] {
    transform: scale(1.05);
}

.share-actions .btn:disabled[b-8xpl1ip2kd] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .share-card[b-8xpl1ip2kd] {
        padding: 1rem;
    }

    .share-header[b-8xpl1ip2kd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .share-type-badge[b-8xpl1ip2kd] {
        width: 100%;
        text-align: center;
    }

    .share-actions[b-8xpl1ip2kd] {
        flex-direction: column;
        width: 100%;
    }

    .share-actions .btn[b-8xpl1ip2kd] {
        width: 100%;
    }
}
/* _content/MarioShows.Web/Features/Shares/SharedWith/SharedWithPage.razor.rz.scp.css */
.shared-with-page[b-59tul91dxe] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header[b-59tul91dxe] {
    margin-bottom: 2.5rem;
}

.page-header h1[b-59tul91dxe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.subtitle[b-59tul91dxe] {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.actions-bar[b-59tul91dxe] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn[b-59tul91dxe] {
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-primary[b-59tul91dxe] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-59tul91dxe] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.loading-state[b-59tul91dxe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-state p[b-59tul91dxe] {
    color: #666;
    font-size: 1rem;
}

.empty-state[b-59tul91dxe] {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i[b-59tul91dxe] {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state h3[b-59tul91dxe] {
    font-size: 1.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p[b-59tul91dxe] {
    color: #999;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hint[b-59tul91dxe] {
    font-style: italic;
    font-size: 1rem !important;
    color: #aaa !important;
}

.shares-grid[b-59tul91dxe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

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

    .page-header h1[b-59tul91dxe] {
        font-size: 2rem;
    }

    .subtitle[b-59tul91dxe] {
        font-size: 1rem;
    }

    .actions-bar[b-59tul91dxe] {
        flex-direction: column;
    }

    .btn[b-59tul91dxe] {
        width: 100%;
        justify-content: center;
    }

    .shares-grid[b-59tul91dxe] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header[b-59tul91dxe] {
        margin-bottom: 1.5rem;
    }

    .page-header h1[b-59tul91dxe] {
        font-size: 1.75rem;
    }

    .empty-state[b-59tul91dxe] {
        padding: 3rem 1rem;
    }

    .empty-state i[b-59tul91dxe] {
        font-size: 3rem;
    }

    .empty-state h3[b-59tul91dxe] {
        font-size: 1.5rem;
    }
}

/* _content/MarioShows.Web/Features/Shares/SharedWithMe/Components/SharedContentList.razor.rz.scp.css */
.shared-content-container[b-2ojs77h0jm] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.shared-content-header[b-2ojs77h0jm] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-back[b-2ojs77h0jm] {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover[b-2ojs77h0jm] {
    background: #f5f5f5;
    border-color: #667eea;
    color: #667eea;
    transform: translateX(-2px);
}

.header-info[b-2ojs77h0jm] {
    flex: 1;
}

.header-info h2[b-2ojs77h0jm] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #333;
}

.header-info p[b-2ojs77h0jm] {
    margin: 0;
    font-size: 0.9rem;
}

.loading-container[b-2ojs77h0jm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-container p[b-2ojs77h0jm] {
    color: #666;
    font-size: 1rem;
}

.empty-state[b-2ojs77h0jm] {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i[b-2ojs77h0jm] {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state h3[b-2ojs77h0jm] {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p[b-2ojs77h0jm] {
    color: #999;
    font-size: 1rem;
}

.content-grid[b-2ojs77h0jm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.content-card[b-2ojs77h0jm] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-card:hover[b-2ojs77h0jm] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.poster-container[b-2ojs77h0jm] {
    position: relative;
    width: 100%;
    padding-top: 150%; /* 2:3 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.poster[b-2ojs77h0jm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .poster[b-2ojs77h0jm] {
    transform: scale(1.05);
}

.poster-placeholder[b-2ojs77h0jm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.poster-placeholder i[b-2ojs77h0jm] {
    font-size: 3rem;
}

.type-badge[b-2ojs77h0jm] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.content-info[b-2ojs77h0jm] {
    padding: 1rem;
}

.content-title[b-2ojs77h0jm] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
}

.content-year[b-2ojs77h0jm] {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .shared-content-container[b-2ojs77h0jm] {
        padding: 1rem;
    }

    .shared-content-header[b-2ojs77h0jm] {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .header-info h2[b-2ojs77h0jm] {
        font-size: 1.5rem;
    }

    .content-grid[b-2ojs77h0jm] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .btn-back[b-2ojs77h0jm] {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-grid[b-2ojs77h0jm] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .type-badge[b-2ojs77h0jm] {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .content-info[b-2ojs77h0jm] {
        padding: 0.75rem;
    }

    .content-title[b-2ojs77h0jm] {
        font-size: 0.875rem;
    }
}
/* _content/MarioShows.Web/Features/Shares/SharedWithMe/SharedWithMePage.razor.rz.scp.css */
.shared-with-me-page[b-2ne44v0gqt] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header[b-2ne44v0gqt] {
    margin-bottom: 2.5rem;
}

.page-header h1[b-2ne44v0gqt] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.subtitle[b-2ne44v0gqt] {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.loading-state[b-2ne44v0gqt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-state p[b-2ne44v0gqt] {
    color: #666;
    font-size: 1rem;
}

.empty-state[b-2ne44v0gqt] {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i[b-2ne44v0gqt] {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state h3[b-2ne44v0gqt] {
    font-size: 1.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p[b-2ne44v0gqt] {
    color: #999;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.shares-grid[b-2ne44v0gqt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.shared-item-card[b-2ne44v0gqt] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shared-item-card:hover[b-2ne44v0gqt] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.avatar-container[b-2ne44v0gqt] {
    flex-shrink: 0;
}

.avatar[b-2ne44v0gqt] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shared-item-info[b-2ne44v0gqt] {
    flex: 1;
    min-width: 0;
}

.shared-item-info h4[b-2ne44v0gqt] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email[b-2ne44v0gqt] {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badges[b-2ne44v0gqt] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge[b-2ne44v0gqt] {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-type[b-2ne44v0gqt] {
    color: white;
}

.type-favorites[b-2ne44v0gqt] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.type-watched[b-2ne44v0gqt] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.badge-inactive[b-2ne44v0gqt] {
    background-color: #e0e0e0;
    color: #666;
}

.action-icon[b-2ne44v0gqt] {
    flex-shrink: 0;
    color: #ccc;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.shared-item-card:hover .action-icon[b-2ne44v0gqt] {
    color: #667eea;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .shared-with-me-page[b-2ne44v0gqt] {
        padding: 1rem;
    }

    .page-header h1[b-2ne44v0gqt] {
        font-size: 2rem;
    }

    .subtitle[b-2ne44v0gqt] {
        font-size: 1rem;
    }

    .shares-grid[b-2ne44v0gqt] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shared-item-card[b-2ne44v0gqt] {
        padding: 1.25rem;
    }

    .avatar[b-2ne44v0gqt] {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .page-header[b-2ne44v0gqt] {
        margin-bottom: 1.5rem;
    }

    .page-header h1[b-2ne44v0gqt] {
        font-size: 1.75rem;
    }

    .empty-state[b-2ne44v0gqt] {
        padding: 3rem 1rem;
    }

    .empty-state i[b-2ne44v0gqt] {
        font-size: 3rem;
    }

    .empty-state h3[b-2ne44v0gqt] {
        font-size: 1.5rem;
    }
}

/* _content/MarioShows.Web/Features/Statistics/StatisticsPage.razor.rz.scp.css */
.statistics-container[b-f4bnlpo870] {
    min-height: 80vh;
}

.statistics-header[b-f4bnlpo870] {
    text-align: center;
    margin-bottom: 2rem;
}

.statistics-header h1[b-f4bnlpo870] {
    color: var(--primary-color);
    font-weight: 700;
}

/* Cards de statistiques principales */
.stat-card[b-f4bnlpo870] {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    height: 100%;
    border: 2px solid transparent;
}

.stat-card:hover[b-f4bnlpo870] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-primary[b-f4bnlpo870] {
    border-color: rgba(13, 110, 253, 0.3);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.stat-card-success[b-f4bnlpo870] {
    border-color: rgba(25, 135, 84, 0.3);
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.stat-card-warning[b-f4bnlpo870] {
    border-color: rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%);
}

.stat-card-info[b-f4bnlpo870] {
    border-color: rgba(13, 202, 240, 0.3);
    background: linear-gradient(135deg, #f0fcff 0%, #ffffff 100%);
}

.stat-icon[b-f4bnlpo870] {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.stat-card-primary .stat-icon[b-f4bnlpo870] {
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
}

.stat-card-success .stat-icon[b-f4bnlpo870] {
    color: var(--success-color);
    background: rgba(25, 135, 84, 0.1);
}

.stat-card-warning .stat-icon[b-f4bnlpo870] {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.stat-card-info .stat-icon[b-f4bnlpo870] {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}

.stat-content[b-f4bnlpo870] {
    flex-grow: 1;
}

.stat-value[b-f4bnlpo870] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: var(--dark-color);
}

.stat-label[b-f4bnlpo870] {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Sections de détails */
.stat-section[b-f4bnlpo870] {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.stat-section .card-title[b-f4bnlpo870] {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #e9ecef;
}

.stat-grid[b-f4bnlpo870] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-item[b-f4bnlpo870] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.stat-item:hover[b-f4bnlpo870] {
    background: #e9ecef;
    transform: translateX(4px);
}

.stat-item-highlight[b-f4bnlpo870] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 1px solid #bbdefb;
}

.stat-item-label[b-f4bnlpo870] {
    font-weight: 500;
    color: var(--secondary-color);
}

.stat-item-value[b-f4bnlpo870] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.progress-container[b-f4bnlpo870] {
    flex-grow: 1;
    margin-left: var(--spacing-md);
}

.progress[b-f4bnlpo870] {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.progress-bar[b-f4bnlpo870] {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
}

/* État vide */
.empty-state[b-f4bnlpo870] {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .statistics-header[b-f4bnlpo870] {
        margin-bottom: 1.5rem;
    }

    .statistics-header h1[b-f4bnlpo870] {
        font-size: 1.75rem;
    }

    .stat-card[b-f4bnlpo870] {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .stat-icon[b-f4bnlpo870] {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .stat-value[b-f4bnlpo870] {
        font-size: 2rem;
    }

    .stat-label[b-f4bnlpo870] {
        font-size: 0.9rem;
    }

    .stat-section .card-title[b-f4bnlpo870] {
        font-size: 1.25rem;
    }

    .stat-item[b-f4bnlpo870] {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        padding: var(--spacing-sm);
    }

    .stat-item-value[b-f4bnlpo870] {
        font-size: 1.1rem;
    }

    .progress-container[b-f4bnlpo870] {
        width: 100%;
        margin-left: 0;
        margin-top: var(--spacing-sm);
    }

    .empty-state[b-f4bnlpo870] {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .statistics-header h1[b-f4bnlpo870] {
        font-size: 1.5rem;
    }

    .stat-card[b-f4bnlpo870] {
        padding: var(--spacing-sm);
    }

    .stat-icon[b-f4bnlpo870] {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .stat-value[b-f4bnlpo870] {
        font-size: 1.75rem;
    }

    .stat-label[b-f4bnlpo870] {
        font-size: 0.85rem;
    }

    .stat-section .card-title[b-f4bnlpo870] {
        font-size: 1.1rem;
    }

    .stat-item[b-f4bnlpo870] {
        padding: 0.75rem;
    }

    .stat-item-label[b-f4bnlpo870] {
        font-size: 0.9rem;
    }

    .stat-item-value[b-f4bnlpo870] {
        font-size: 1rem;
    }
}

/* _content/MarioShows.Web/Features/Watched/WatchedPage.razor.rz.scp.css */
.watched-header[b-r6y58be4g3] {
    text-align: center;
    margin-bottom: 2rem;
}

.watched-header h1[b-r6y58be4g3] {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Statistiques */
.watched-stats[b-r6y58be4g3] {
    margin-bottom: 2rem;
}

.stat-card[b-r6y58be4g3] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.stat-card:hover[b-r6y58be4g3] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-card i[b-r6y58be4g3] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value[b-r6y58be4g3] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-label[b-r6y58be4g3] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Filtres */
.watched-filters[b-r6y58be4g3] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Empty state */
.empty-watched[b-r6y58be4g3] {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Carte de film/série vu */
.watched-card[b-r6y58be4g3] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.watched-card:hover[b-r6y58be4g3] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.watched-poster[b-r6y58be4g3] {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.watched-badge-overlay[b-r6y58be4g3] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(25, 135, 84, 0.95);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.watched-content[b-r6y58be4g3] {
    padding: 1rem;
}

.watched-badges[b-r6y58be4g3] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.watched-badges .badge[b-r6y58be4g3] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
}

.network-logo-small[b-r6y58be4g3] {
    height: 12px;
    width: auto;
    border-radius: 2px;
    vertical-align: middle;
}

.watched-title[b-r6y58be4g3] {
    font-weight: 600;
    margin: 0.5rem 0;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem;
}

.watched-meta[b-r6y58be4g3] {
    color: #6c757d;
    font-size: 0.85rem;
}

.watched-actions[b-r6y58be4g3] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.watched-card:hover .watched-actions[b-r6y58be4g3] {
    opacity: 1;
}

.watched-actions .btn[b-r6y58be4g3] {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .watched-header[b-r6y58be4g3] {
        margin-bottom: 1.5rem;
    }

    .watched-header h1[b-r6y58be4g3] {
        font-size: 1.75rem;
    }

    .watched-stats[b-r6y58be4g3] {
        margin-bottom: 1.5rem;
    }

    .watched-stats .stat-card[b-r6y58be4g3] {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .stat-card i[b-r6y58be4g3] {
        font-size: 1.5rem;
    }

    .stat-value[b-r6y58be4g3] {
        font-size: 1.5rem;
    }

    .stat-label[b-r6y58be4g3] {
        font-size: 0.8rem;
    }
    
    .watched-filters[b-r6y58be4g3] {
        overflow-x: auto;
        margin-bottom: 1.5rem;
    }
    
    .watched-actions[b-r6y58be4g3] {
        opacity: 1;
    }

    .watched-poster[b-r6y58be4g3] {
        height: 180px;
    }

    .watched-content[b-r6y58be4g3] {
        padding: 0.75rem;
    }

    .watched-title[b-r6y58be4g3] {
        font-size: 1rem;
    }

    .empty-watched[b-r6y58be4g3] {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .watched-header h1[b-r6y58be4g3] {
        font-size: 1.5rem;
    }

    .watched-stats .stat-card[b-r6y58be4g3] {
        padding: 0.75rem;
    }

    .stat-card i[b-r6y58be4g3] {
        font-size: 1.25rem;
    }

    .stat-value[b-r6y58be4g3] {
        font-size: 1.25rem;
    }

    .watched-poster[b-r6y58be4g3] {
        height: 160px;
    }

    .watched-content[b-r6y58be4g3] {
        padding: 0.6rem;
    }

    .watched-title[b-r6y58be4g3] {
        font-size: 0.95rem;
    }

    .watched-badges .badge[b-r6y58be4g3] {
        font-size: 0.65rem;
    }

    .empty-watched[b-r6y58be4g3] {
        padding: 1.5rem 0.75rem;
    }
}

