/* ============================================
   CALENDRIER - Styles spécifiques
   Complète le design system ULK
   ============================================ */

/* Navigation du calendrier */
.calendar-nav {
    gap: var(--ulk-spacing-md);
}

.nav-btn-prev,
.nav-btn-next {
    min-width: 4rem;
    min-height: 4rem;
    padding: var(--ulk-spacing-xs);
}

.current-week-label {
    min-width: 20rem;
    text-align: center;
}

/* Liste des jours */
.day-list {
    display: flex;
    flex-direction: column;
    gap: var(--ulk-spacing-sm);
}

.day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ulk-spacing-sm);
    border-radius: var(--ulk-radius-sm);
    background: var(--ulk-white);
    border: 1px solid var(--ulk-gray-200);
    transition: all 0.2s;
}

.day-item.today {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: scale(1.02);
    box-shadow: var(--ulk-shadow-sm);
}

.day-meta {
    display: flex;
    flex-direction: column;
}

.day-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ulk-gray-900);
    text-transform: capitalize;
}

.day-date {
    font-size: 1.4rem;
    color: var(--ulk-gray-500);
}

.hours-container {
    text-align: right;
}

.hours-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: var(--ulk-radius-full);
    font-weight: 600;
    font-size: 1.4rem;
}

.status-open {
    color: #15803d;
    background: #dcfce7;
}

.status-closed {
    color: #dc2626;
    background: #fee2e2;
}

.status-modified {
    color: #d97706;
    background: #fef3c7;
}

.exception-note {
    font-size: 1.2rem;
    color: #ea580c;
    margin-top: 0.4rem;
    font-style: italic;
}

/* Loading State */
.skeleton {
    height: 6rem;
    background: var(--ulk-gray-200);
    margin-bottom: var(--ulk-spacing-xs);
    border-radius: var(--ulk-radius-sm);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.4;
    }
}

/* Alertes - Styles complets */
.alert-container {
    margin: var(--ulk-spacing-md) 0;
}

#public-alert>div {
    margin-bottom: var(--ulk-spacing-xs);
}

.alert-info,
.alert-warning,
.alert-success,
.alert-danger {
    padding: var(--ulk-spacing-sm);
    border-radius: var(--ulk-radius-sm);
    margin-bottom: var(--ulk-spacing-xs);
    font-weight: 500;
    font-size: 1.4rem;
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}