.andrew-booking-form {
    max-width: 700px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.booking-day {
    margin-bottom: 25px;
}

.booking-day strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.slot-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .2s ease;
    background: #fff;
}

.slot-card:hover {
    border-color: #0073aa;
    background: #f7fbff;
}

.slot-card input {
    display: none;
}

.slot-card.selected {
    border-color: #0073aa;
    background: #eaf6ff;
}

.slot-time {
    font-weight: bold;
    font-size: 16px;
}

.slot-available {
    font-size: 14px;
    color: #2e7d32;
}
