/**
 * Public styles for WP Booking System
 */

/* Main form wrapper */
.wp-booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Step container */
.wp-booking-step {
    margin-bottom: 30px;
}

.wp-booking-step h3 {
    color: #0073aa;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    font-size: 1.4em;
}

/* Form fields */
.wp-booking-field {
    margin-bottom: 20px;
}

.wp-booking-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wp-booking-field input,
.wp-booking-field select,
.wp-booking-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.wp-booking-field input:focus,
.wp-booking-field select:focus,
.wp-booking-field textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Service description */
.wp-booking-service-description {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    border-left: 4px solid #0073aa;
}

/* Date and time selection */
.wp-booking-datetime {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin: 20px 0;
}

.wp-booking-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.wp-booking-time-slot {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.wp-booking-time-slot:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.wp-booking-time-slot.selected {
    border-color: #0073aa;
    background: #0073aa;
    color: #fff;
}

.wp-booking-time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
}

.wp-booking-select-date-first {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 20px 0;
}

/* User info */
.wp-booking-user-info {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Booking summary */
.wp-booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.wp-booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.wp-booking-summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.1em;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #dee2e6;
}

/* Terms checkbox */
.wp-booking-terms {
    margin: 20px 0;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
}

.wp-booking-terms label {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.wp-booking-terms input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Navigation buttons */
.wp-booking-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.wp-booking-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.wp-booking-btn-primary {
    background: #0073aa;
    color: #fff;
}

.wp-booking-btn-primary:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.wp-booking-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.wp-booking-btn-secondary:hover {
    background: #5a6268;
}

.wp-booking-btn-success {
    background: #28a745;
    color: #fff;
}

.wp-booking-btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* Loading state */
.wp-booking-loading {
    text-align: center;
    padding: 40px;
}

.wp-booking-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: wp-booking-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes wp-booking-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.wp-booking-messages {
    margin-top: 20px;
}

.wp-booking-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.wp-booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wp-booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services grid */
.wp-booking-services-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.wp-booking-services-cols-1 {
    grid-template-columns: 1fr;
}

.wp-booking-services-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wp-booking-services-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wp-booking-services-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wp-booking-service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-booking-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.wp-booking-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wp-booking-service-content {
    padding: 20px;
}

.wp-booking-service-title {
    margin: 0 0 10px 0;
    color: #333;
}

.wp-booking-service-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.wp-booking-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.wp-booking-price {
    font-weight: bold;
    color: #0073aa;
    font-size: 16px;
}

.wp-booking-service-actions {
    text-align: center;
}

/* Calendar (public view) */
.wp-booking-calendar-public {
    margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .wp-booking-form-wrapper {
        padding: 20px;
    }

    .wp-booking-datetime {
        grid-template-columns: 1fr;
    }

    .wp-booking-time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-booking-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .wp-booking-btn {
        width: 100%;
    }

    .wp-booking-services-cols-2,
    .wp-booking-services-cols-3,
    .wp-booking-services-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wp-booking-time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-booking-service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Business type specific styles */
.wp-booking-form-wrapper[data-business-type="spa"] {
    border-color: #e91e63;
}

.wp-booking-form-wrapper[data-business-type="spa"] .wp-booking-step h3 {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.wp-booking-form-wrapper[data-business-type="car_rental"] {
    border-color: #ff9800;
}

.wp-booking-form-wrapper[data-business-type="car_rental"] .wp-booking-step h3 {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

.wp-booking-form-wrapper[data-business-type="appointments"] {
    border-color: #2196f3;
}

.wp-booking-form-wrapper[data-business-type="appointments"] .wp-booking-step h3 {
    color: #2196f3;
    border-bottom-color: #2196f3;
}

.wp-booking-form-wrapper[data-business-type="events"] {
    border-color: #9c27b0;
}

.wp-booking-form-wrapper[data-business-type="events"] .wp-booking-step h3 {
    color: #9c27b0;
    border-bottom-color: #9c27b0;
}

.wp-booking-form-wrapper[data-business-type="restaurant"] {
    border-color: #795548;
}

.wp-booking-form-wrapper[data-business-type="restaurant"] .wp-booking-step h3 {
    color: #795548;
    border-bottom-color: #795548;
}

/* ====================================
   INTERACTIVE CALENDAR STYLES
   Added for interactive calendar booking functionality
   ==================================== */

/* Calendar is interactive */
.calendar-interactive .calendar-day.available {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Better hover effects for interactive calendars */
.calendar-interactive .calendar-day.available:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

/* Active state for touch devices */
.calendar-interactive .calendar-day.available:active,
.calendar-interactive .calendar-day.available.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Selected date styling */
.calendar-interactive .calendar-day.selected {
    background: #28a745 !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    border: 2px solid #1e7e34;
}

/* Focus states for keyboard navigation */
.calendar-interactive .calendar-day.available:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    background: #667eea;
    color: white;
}

/* Calendar with service integration - availability indicator */
.calendar-interactive[data-service]:not([data-service=""]) .calendar-day.available::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #007cba;
    border-radius: 50%;
    opacity: 0.7;
}

.calendar-interactive[data-service]:not([data-service=""]) .calendar-day.selected::before {
    background: white;
    opacity: 1;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .calendar-interactive .calendar-day.available {
        min-height: 44px; /* iOS recommended touch target */
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .calendar-interactive .calendar-day.available:hover {
        transform: none; /* Disable hover scaling on touch devices */
        box-shadow: none;
    }

    .calendar-interactive .calendar-day.available:active,
    .calendar-interactive .calendar-day.available.touch-active {
        background: #667eea;
        color: white;
        transform: scale(0.95);
    }
}

/* ====================================
   TIME SLOTS DISPLAY
   For inline time slot display after calendar selection
   ==================================== */

.booking-time-slots-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 25px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-time-slots-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.booking-time-slots-container h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.3em;
    text-align: center;
    font-weight: 600;
}

.available-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.time-slot:hover {
    border-color: #667eea;
    background: #f0f3ff;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.time-slot:disabled {
    background: #f5f5f5;
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.select-date-message {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .available-times-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    .time-slot {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ====================================
   BOOKING FORM AND ACTIONS
   For simple booking flow without services
   ==================================== */

.time-slots-header h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.booking-instructions {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.booking-actions {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 25px;
}

.booking-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.booking-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ====================================
   ENHANCED SIMPLE BOOKING FORM STYLING
   ==================================== */

.simple-booking-form {
    animation: slideIn 0.4s ease-out;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
}

.simple-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.simple-booking-form h4 {
    text-align: center;
    color: #2d3748;
    font-size: 1.5em;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.simple-booking-form > p {
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    margin: 10px 0;
    border-left: 4px solid #667eea;
    font-weight: 500;
    color: #2d3748;
}

.simple-booking-form .form-fields {
    margin-top: 25px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-field {
    margin-bottom: 20px;
    text-align: left;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
    transform: translateY(-1px);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.submit-booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-booking:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.submit-booking:active {
    transform: translateY(0);
}

/* ====================================
   ENHANCED SUCCESS MESSAGE STYLING
   ==================================== */

.booking-success {
    animation: fadeIn 0.6s ease-out;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 40px 30px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
}

.booking-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.booking-success h3 {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    color: #166534;
    font-weight: 700;
}

.booking-success p {
    margin: 12px 0;
    color: #15803d;
    font-size: 16px;
    line-height: 1.5;
}

.booking-success strong {
    color: #14532d;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.no-times-available {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 40px 20px;
    background: rgba(249, 250, 251, 0.8);
    border-radius: 8px;
    border: 1px dashed #d1d5db;
}

/* ====================================
   MODAL OVERLAY SYSTEM
   True overlay that appears in front of calendar
   ==================================== */

.booking-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: modalFadeIn 0.3s ease-out;
}

.booking-form-modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.booking-form-content {
    padding: 0;
}

/* Close button */
.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    z-index: 10;
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    background: #fff;
    color: #333;
    transform: scale(1.1);
}

/* Override containers when inside modal */
.booking-form-overlay .simple-booking-form {
    margin: 0;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    max-width: none;
    width: 100%;
}

.booking-form-overlay .booking-success {
    margin: 0;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    max-width: none;
    width: 100%;
}

/* Time slots display in modal */
.booking-form-overlay .time-slots-header,
.booking-form-overlay .available-times-grid,
.booking-form-overlay .booking-actions {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.booking-form-overlay .time-slots-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 12px 12px 0 0;
    padding: 30px 30px 20px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.booking-form-overlay .time-slots-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.booking-form-overlay .time-slots-header h4 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1.4em;
    text-align: center;
    font-weight: 600;
}

.booking-form-overlay .available-times-grid {
    background: #fff;
    border: none;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 0;
}

.booking-form-overlay .booking-actions {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 0 0 12px 12px;
    padding: 25px 30px;
    text-align: center;
    margin-top: 0;
}

/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ====================================
   RESPONSIVE IMPROVEMENTS
   ==================================== */

@media (max-width: 768px) {
    .simple-booking-form,
    .booking-success {
        margin: 20px 10px;
        padding: 25px 20px;
        max-width: calc(100% - 20px);
    }

    /* Modal responsive styles */
    .booking-form-overlay {
        padding: 10px;
    }

    .booking-form-modal {
        max-width: none;
        width: 100%;
        margin: 0;
        border-radius: 8px;
    }

    .booking-form-overlay .time-slots-header,
    .booking-form-overlay .available-times-grid,
    .booking-form-overlay .booking-actions {
        padding: 20px 15px;
    }

    .booking-form-overlay .time-slots-header {
        border-radius: 8px 8px 0 0;
    }

    .booking-form-overlay .booking-actions {
        border-radius: 0 0 8px 8px;
    }

    .booking-form-overlay .available-times-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }

    .simple-booking-form h4 {
        font-size: 1.3em;
    }

    .booking-success h3 {
        font-size: 1.5em;
    }

    .form-field input,
    .form-field textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .submit-booking {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .simple-booking-form,
    .booking-success {
        margin: 15px 5px;
        padding: 20px 15px;
    }

    /* Modal small mobile styles */
    .booking-form-overlay {
        padding: 5px;
    }

    .booking-form-modal {
        border-radius: 6px;
        max-height: 95vh;
    }

    .booking-form-overlay .time-slots-header,
    .booking-form-overlay .available-times-grid,
    .booking-form-overlay .booking-actions {
        padding: 15px 10px;
    }

    .booking-form-overlay .time-slots-header {
        border-radius: 6px 6px 0 0;
    }

    .booking-form-overlay .booking-actions {
        border-radius: 0 0 6px 6px;
    }

    .booking-form-overlay .available-times-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }

    .simple-booking-form > p {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-field {
        margin-bottom: 18px;
    }

    .booking-modal-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
}