.appointment-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.appointment-booking-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

#booking-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.25rem;
}

