.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    border: 2px solid #fff;
}

.step.active .step-icon {
    background: #6a1b9a;
    color: #fff;
}

.step.completed .step-icon {
    background: #28a745;
    color: #fff;
}

.step-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active .step-text {
    color: #6a1b9a;
    font-weight: 500;
}

.hizmet-card, .personel-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hizmet-card:hover, .personel-card:hover {
    transform: translateY(-5px);
}

.hizmet-card.selected .card, .personel-card.selected .card {
    border-color: #6a1b9a;
    box-shadow: 0 0 0 0.2rem rgba(106, 27, 154, 0.15);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control:focus, .form-select:focus {
    border-color: #6a1b9a;
    box-shadow: 0 0 0 0.2rem rgba(106, 27, 154, 0.15);
}

.btn-primary {
    background-color: #6a1b9a;
    border-color: #6a1b9a;
}

.btn-primary:hover {
    background-color: #4a148c;
    border-color: #4a148c;
}

.btn-outline-primary {
    color: #6a1b9a;
    border-color: #6a1b9a;
}

.btn-outline-primary:hover {
    background-color: #6a1b9a;
    border-color: #6a1b9a;
}

.fas {
    color: #6a1b9a;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-title {
    color: #6a1b9a;
    font-weight: 600;
}

/* Tarih ve Saat Seçici Stilleri */
.flatpickr-calendar {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: none;
}

.flatpickr-day.selected {
    background: #6a1b9a;
    border-color: #6a1b9a;
}

.flatpickr-day:hover {
    background: #f0e6f5;
}

.flatpickr-day.today {
    border-color: #6a1b9a;
}

.time-slots {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #28a745;
    opacity: 0.1;
    z-index: 0;
}

.time-slot:hover {
    background: #f8f9fa;
    border-color: #28a745;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.time-slot.selected::before {
    display: none;
}

.time-slot.disabled {
    background: #fff;
    color: #dc3545;
    cursor: not-allowed;
    border-color: #dc3545;
}

.time-slot.disabled::before {
    background: #dc3545;
    opacity: 0.1;
}

.time-slot.disabled:hover {
    background: #fff;
    border-color: #dc3545;
    transform: none;
}

/* Scrollbar Stilleri */
.time-slots::-webkit-scrollbar {
    width: 8px;
}

.time-slots::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.time-slots::-webkit-scrollbar-thumb {
    background: #6a1b9a;
    border-radius: 4px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
    background: #4a148c;
}

/* Sol Sidebar Seçim Özeti Stilleri */
#secim-ozeti {
    transition: all 0.3s ease;
    border-left: 4px solid #6a1b9a;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.1);
}

#secim-ozeti .card-title {
    color: #6a1b9a;
    font-weight: 600;
    border-bottom: 2px solid #f0e6f5;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#secilen-hizmetler,
#secilen-personel,
#secilen-tarih-saat,
#secilen-musteri {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

#secilen-hizmetler::before,
#secilen-personel::before,
#secilen-tarih-saat::before,
#secilen-musteri::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #6a1b9a;
}

#secilen-hizmetler:hover,
#secilen-personel:hover,
#secilen-tarih-saat:hover,
#secilen-musteri:hover {
    border-color: #6a1b9a;
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.15);
    transform: translateY(-2px);
}

#secilen-hizmetler h6,
#secilen-personel h6,
#secilen-tarih-saat h6,
#secilen-musteri h6 {
    color: #6a1b9a;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#secilen-hizmetler .badge {
    background: linear-gradient(45deg, #6a1b9a, #8e24aa) !important;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(106, 27, 154, 0.3);
}

#toplam-fiyat {
    color: #6a1b9a;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(106, 27, 154, 0.1);
}

#secilen-personel img,
#secilen-personel .rounded-circle {
    border: 3px solid #6a1b9a;
    box-shadow: 0 3px 8px rgba(106, 27, 154, 0.2);
}

#secilen-personel .fw-bold {
    color: #6a1b9a;
    font-size: 1rem;
    font-weight: 700;
}

#secilen-tarih-saat .fas {
    font-size: 1.3rem;
    color: #6a1b9a;
    text-shadow: 0 1px 2px rgba(106, 27, 154, 0.2);
}

#secilen-tarih-saat .fw-bold {
    color: #6a1b9a;
    font-weight: 700;
    font-size: 0.95rem;
}

#secilen-tarih-saat .text-muted {
    color: #6c757d !important;
    font-weight: 600;
    font-size: 0.9rem;
}

#secilen-musteri div {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #6a1b9a;
    transition: all 0.2s ease;
}

#secilen-musteri div:hover {
    background: #f0e6f5;
    transform: translateX(5px);
}

#secilen-musteri div:last-child {
    margin-bottom: 0;
}

#secilen-musteri .fas {
    width: 18px;
    text-align: center;
    color: #6a1b9a;
    font-weight: 600;
}

/* Seçim durumu göstergeleri */
.selection-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(106, 27, 154, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0);
    }
}

#secilen-hizmetler.show,
#secilen-personel.show,
#secilen-tarih-saat.show,
#secilen-musteri.show {
    animation: fadeInUp 0.4s ease, pulse 1s ease-in-out;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    #secim-ozeti {
        margin-top: 1rem;
        border-left: none;
        border-top: 4px solid #6a1b9a;
    }
    
    #secilen-hizmetler,
    #secilen-personel,
    #secilen-tarih-saat,
    #secilen-musteri {
        padding: 0.75rem;
    }
}

/* Çoklu Hizmet Seçimi Stilleri */
.hizmet-card.multi-selected .card {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
}

.hizmet-card.multi-selected .card::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.hizmet-card.multi-selected .card-title {
    color: #28a745;
}

.hizmet-card.multi-selected .badge {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
}

/* Çoklu hizmet seçimi için hover efekti */
.hizmet-card:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.15);
}

.hizmet-card.multi-selected:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
}

/* Seçim sayısı göstergesi */
.selection-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 15;
}

/* Çoklu hizmet seçimi için özel animasyon */
@keyframes multiSelect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hizmet-card.multi-selected .card {
    animation: multiSelect 0.3s ease;
} 