/* Public CSS for Appointment Booking */

#appointment-booking-form-wrapper {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#appointment-booking-form-wrapper h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.ab-form-field {
    margin-bottom: 15px;
}

.ab-form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.ab-form-field input[type="text"],
.ab-form-field input[type="email"],
.ab-form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#ab-time-slots-container .ab-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,.1);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: spin 1s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#ab-response-message {
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
    display: none;
}

#ab-response-message.success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

#ab-response-message.error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}