/* Styles pour la section de planning des streams */

.stream-schedule {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.schedule-item {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.schedule-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 4px;
}

.schedule-value {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.last-stream .schedule-label {
    color: var(--streamer-color-dark, #ff9500);
}

.last-stream .schedule-value {
    color: var(--streamer-color, #ffb84d);
}

.next-stream .schedule-label {
    color: var(--streamer-color-dark, #00d4aa);
}

.next-stream .schedule-value {
    color: var(--streamer-color, #4dffdd);
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .schedule-item {
        padding: 10px;
    }
    
    .schedule-label {
        font-size: 10px;
    }
    
    .schedule-value {
        font-size: 12px;
    }
}

/* Animation d'apparition */
.stream-schedule {
    animation: scheduleSlideIn 0.3s ease-out;
}

@keyframes scheduleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* États spéciaux */
.schedule-value:contains("Aucune info"),
.schedule-value:contains("Pas programmé") {
    color: #666 !important;
    font-style: italic;
}

/* Indicateurs visuels */
.schedule-item.last-stream::before {
    content: "📅";
    margin-right: 4px;
}

.schedule-item.next-stream::before {
    content: "⏰";
    margin-right: 4px;
}
