/* =============================================
   TAKVIM EK STILLERI
   ============================================= */

/* Takvim secili tarih bilgisi */
.selected-date-info {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(232, 119, 34, 0.1);
    border: 1px solid rgba(232, 119, 34, 0.2);
    border-radius: var(--radius-xs);
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-date-info i {
    font-size: 16px;
}

/* Takvim yukleniyor */
.calendar-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-muted);
    gap: 10px;
}

/* Saat slotlari animasyonu */
.time-slots .time-slot {
    animation: fadeIn 0.3s ease forwards;
    opacity: 0;
}

.time-slots .time-slot:nth-child(1) { animation-delay: 0.02s; }
.time-slots .time-slot:nth-child(2) { animation-delay: 0.04s; }
.time-slots .time-slot:nth-child(3) { animation-delay: 0.06s; }
.time-slots .time-slot:nth-child(4) { animation-delay: 0.08s; }
.time-slots .time-slot:nth-child(5) { animation-delay: 0.10s; }
.time-slots .time-slot:nth-child(6) { animation-delay: 0.12s; }
.time-slots .time-slot:nth-child(7) { animation-delay: 0.14s; }
.time-slots .time-slot:nth-child(8) { animation-delay: 0.16s; }
.time-slots .time-slot:nth-child(9) { animation-delay: 0.18s; }
.time-slots .time-slot:nth-child(10) { animation-delay: 0.20s; }
.time-slots .time-slot:nth-child(11) { animation-delay: 0.22s; }
.time-slots .time-slot:nth-child(12) { animation-delay: 0.24s; }
.time-slots .time-slot:nth-child(13) { animation-delay: 0.26s; }
.time-slots .time-slot:nth-child(14) { animation-delay: 0.28s; }
.time-slots .time-slot:nth-child(15) { animation-delay: 0.30s; }
.time-slots .time-slot:nth-child(16) { animation-delay: 0.32s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Takvim gun hover efekti */
.calendar-day:not(.disabled):not(.empty):not(.selected):hover {
    background: rgba(232, 119, 34, 0.1);
    border-color: rgba(232, 119, 34, 0.3);
    color: var(--orange);
}

/* Takvim responsive */
@media (max-width: 480px) {
    .calendar-day {
        font-size: 12px;
    }
    
    .calendar-day-name {
        font-size: 10px;
    }
    
    .time-slot {
        padding: 8px;
        font-size: 13px;
    }
}
