/* Booking System Styles */

/* Progress Bar */
.booking-progress {
    position: relative;
    padding-top: 30px;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-top: -15px;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    z-index: 1;
}

.step-text {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

.booking-step.active .step-number {
    background-color: #0d6efd;
    color: white;
}

.booking-step.active .step-text {
    color: #0d6efd;
    font-weight: bold;
}

.booking-step.completed .step-number {
    background-color: #198754;
    color: white;
}

/* Booking Step Content */
.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
}

/* Service Cards */
.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}


/* Staff Cards */
.staff-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-card.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.staff-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.staff-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Datepicker */
.datepicker table tr td.active {
    background-color: #0d6efd !important;
}

/* Timeslots */
.timeslots-container {
    min-height: 300px;
}

.timeslot-btn {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-text {
        font-size: 0.8rem;
    }
    
    .staff-avatar, .staff-avatar img, .staff-initials {
        width: 80px;
        height: 80px;
    }
    
    .staff-initials {
        font-size: 2rem;
    }
/* Öffnungszeiten Styling */
.opening-hours-info {
    background-color: #e7f5ff;
    border-left: 4px solid #0d6efd;
}

.opening-hours-info h6 {
    color: #0d6efd;
    font-weight: 600;
}


}