.booking-widget {
    max-width: 520px;
    margin: 0 auto;
    font-family: inherit;
}

.booking-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px;
    border: 1px solid #eee;
}

.booking-card-wide {
    max-width: 720px;
}

.booking-icon {
    width: 56px;
    height: 56px;
    background: #eef4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a6b;
    margin: 0 auto 20px;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.booking-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.booking-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #444;
    font-size: 0.9rem;
}

.booking-features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a3a6b;
    font-weight: bold;
}

.booking-btn-choose-time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 8px;
}

.booking-back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
}

.booking-back-btn:hover {
    color: #1a3a6b;
}

.booking-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.booking-calendar-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 640px) {
    .booking-calendar-layout {
        grid-template-columns: 1fr;
    }
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.booking-month-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-nav {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: #333;
}

.booking-nav:hover {
    background: #f5f5f5;
}

.booking-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 4px;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: default;
    color: #ccc;
    border: none;
    background: none;
    padding: 0;
}

.booking-day.available {
    color: #1a3a6b;
    cursor: pointer;
    font-weight: 500;
}

.booking-day.available:hover {
    background: #eef4ff;
}

.booking-day.selected {
    background: #1a3a6b;
    color: #fff;
}

.booking-day.empty {
    visibility: hidden;
}

.booking-selected-date-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.booking-slots-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
}

.booking-slot-btn {
    border: 1px solid #1a3a6b;
    background: #fff;
    color: #1a3a6b;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

.booking-slot-btn:hover {
    background: #1a3a6b;
    color: #fff;
}

.booking-no-slots {
    color: #888;
    font-size: 0.875rem;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

.booking-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.booking-cancel-btn {
    color: #666;
    text-decoration: none;
}

.booking-card-success {
    text-align: center;
    padding: 48px 32px;
}

.booking-success-icon {
    width: 64px;
    height: 64px;
    background: #d4edda;
    color: #155724;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.booking-step.d-none {
    display: none !important;
}
