:root {
    --primary-color: #0d6efd;
    --accent-color: #20c997;
}

body.booking-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.booking-wizard { max-width: 720px; }

.steps {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 2px solid #e2e8f0;
    font-size: 0.85rem;
}

.step.active { border-color: var(--primary-color); background: #eff6ff; }
.step.done { border-color: var(--accent-color); background: #ecfdf5; }

.step-num {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2e8f0;
    font-weight: 600;
    margin-right: 0.25rem;
}

.step.active .step-num { background: var(--primary-color); color: #fff; }
.step.done .step-num { background: var(--accent-color); color: #fff; }

.type-card, .therapist-card {
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.2s;
}

.type-card:hover, .therapist-card:hover { border-color: var(--primary-color); }
.type-card.selected, .therapist-card.selected {
    border-color: var(--primary-color);
    background: #eff6ff;
}

.slot-btn {
    min-width: 80px;
}

.summary-box {
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.25rem;
    height: 1rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn-primary { background-color: var(--primary-color); border-color: var(--primary-color); }
