/* CourtReserve - Booking Wizard Styles */

.com-courtreserve-booking {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Step Progress Indicator */
.booking-progress {
    padding: 20px 0;
}

.booking-progress .d-flex {
    position: relative;
}

.progress-bar-track {
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #dee2e6;
    z-index: 0;
}

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

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #0d6efd;
    color: #fff;
}

.progress-step.completed .step-circle {
    background: #198754;
    color: #fff;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #198754;
}

/* Service Cards (Step 1) */
.service-card {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
}

.service-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: #0d6efd;
    background: #f0f6ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.service-card .service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-card .service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card .service-desc {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Lesson Cards */
.lesson-card {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #dee2e6;
}

.lesson-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lesson-card.selected {
    border-color: #0d6efd;
    background: #f0f6ff;
}

/* Time Slot Buttons */
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.slot-btn {
    padding: 8px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slot-btn:hover {
    border-color: #0d6efd;
    background: #f8f9fa;
}

.slot-btn.selected {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.court-group {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.court-name {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Review & Customer Form */
#booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#total-price {
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-weight: 700;
}

/* Wizard Navigation */
.wizard-navigation {
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
}

/* Confirmation */
.confirmation-icon {
    font-size: 64px;
    color: #198754;
}

/* Responsive */
@media (max-width: 768px) {
    .com-courtreserve-booking {
        padding: 10px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .service-card {
        padding: 20px 15px;
        margin-bottom: 12px;
    }

    .service-card .service-icon {
        font-size: 36px;
    }

    .slot-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
