/* =========================
Booking Pages Only
========================= */


/* Booking Header */
.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px; /* 👈 left & right breathing room */
}

.booking-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    margin-bottom: 24px;
}

.booking-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* 🔥 LOGO FIX */
.booking-logo {
    max-width: 220px;   /* HARD LIMIT */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.booking-title {
    font-size: 26px;
    font-weight: 600;
}


/* Therapist Cards */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.therapist-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;

    display: flex;              /* 👈 key */
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}


.therapist-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.therapist-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: block;
}

.therapist-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.therapist-bio {
    font-size: 14px;
    color: #6b7280;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

input[type="radio"]:checked + .therapist-card {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}
.no-preference-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.no-preference-actions {
    margin-top: 12px;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    justify-items: stretch; /* 👈 change from center */
}


.booking-actions {
    margin-top: 32px;
    text-align: right;
}

.booking-service-container {
    max-width: 720px;
    margin: 0 auto;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        display: none;
    }
}

/* Availability – dot style */
.availability-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
}

.availability-header {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.availability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
}

.availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.availability-dot.available {
    background-color: #22c55e; /* green */
}

.availability-dot.unavailable {
    background-color: #d1d5db; /* grey */
}

.availability-date {
    color: #374151;
}
