.booking-form-container {max-width: 600px; margin: 0 auto; padding: 20px;}
.form-row {display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap;}
.form-group {flex: 1; min-width: 200px;}
.form-label {display: block; margin-bottom: 8px; font-weight: 600; color: #f2f2f2!important;}
.form-input, .form-select {width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; box-sizing: border-box;}
.phone-input {display: flex; gap: 10px;}
.country-code {max-width: 120px;}
.price-display {text-align: center; font-size: 28px; font-weight: bold; color: #28a745; padding: 10px; background: #f8f9fa; border-radius: 8px; margin: 20px 0;}
.booking-submit { width: 100%;}
.booking-submit:hover {transform: translateY(-2px);}
.booking-submit:disabled {cursor: not-allowed; transform: none;}
.form-response {padding: 15px; border-radius: 5px; margin-bottom: 20px; display: none;}
.form-response.success {background: #d4edda; color: #155724; border: 1px solid #c3e6cb;}
.form-response.error {background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;}
.loading {opacity: 0.7; pointer-events: none;}  
/* Datepicker */
.ui-datepicker .ui-state-disabled {background: #fed7d7; color: #c53030; cursor: not-allowed;}
.ui-datepicker .available-date {background: #f0fff4;}

/* Loading spinner */
.loading-spinner {display: inline-block; width: 20px; height: 20px; border: 3px solid #f3f3f3; border-top: 3px solid #667eea; border-radius: 50%; animation: spin 1s linear infinite; margin-right: 10px; vertical-align: middle;}
@keyframes spin {0% {transform: rotate(0deg);} 100% {transform: rotate(360deg);}}

/* Slot status */
.slot-status {font-size: 12px; margin-top: 5px;}
.slot-status.available {color: #38a169;}
.slot-status.unavailable {color: #e53e3e;}