.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: 72px;}
.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;}

/* OpenTable Branding - Powered By Section */
.opentable-branding { text-align: center; margin-top: 20px; padding: 12px; border-top: 1px solid rgba(72, 255, 80, 0.2); background: rgba(0, 0, 0, 0); border-radius: 8px; }
.powered-by-text { font-size: 10px; color: rgba(255, 255, 255, 0.5); letter-spacing: 1px; margin-bottom: 6px; text-transform: uppercase; }
.opentable-logo { display: inline-block; text-decoration: none; }
.opentable-logo img { height: 22px; width: auto; opacity: 0.9; transition: opacity 0.3s ease; }
.opentable-logo:hover img { opacity: 1; }
.opentable-links { display: flex; justify-content: center; gap: 12px; margin-top: 0px; }
.opentable-links a { color: #48FF50; font-size: 10px; text-decoration: none; }
.opentable-links a:hover { text-decoration: underline; }