.vera-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.vera-booking-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vera-booking-form-left {
    flex: 0 0 33%;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vera-booking-form-left h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.vera-booking-calendar-right {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vera-booking-calendar-right h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.vera-booking-form-container h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.vera-booking-form .form-group {
    margin-bottom: 20px;
}

.vera-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.vera-booking-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vera-booking-form .form-check-input {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.vera-booking-form .form-check-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.vera-booking-form .form-check-label a {
    color: #007bff;
    text-decoration: underline;
}

.vera-booking-form .form-check-label a:hover {
    color: #0056b3;
    text-decoration: none;
}

.vera-booking-form input[type="text"],
.vera-booking-form input[type="email"],
.vera-booking-form input[type="tel"],
.vera-booking-form select,
.vera-booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.vera-booking-form input:focus,
.vera-booking-form select:focus,
.vera-booking-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.calendar-group {
    margin-top: 20px;
}

.calendar-container {
    margin-bottom: 20px;
}

.calendar-group > label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

#vera-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.calendar-day {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.calendar-day:hover {
    background: #e9ecef;
}

.calendar-day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.calendar-day.selected {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.calendar-day.today {
    border: 2px solid #28a745;
}

.calendar-day.other-month {
    color: #999;
}

.time-selection {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.time-slot {
    flex: 1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    min-width: 250px;
}

.time-slot h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #333;
    font-size: 1rem;
}

.alert {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert i {
    font-size: 1.1rem;
}

.time-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 6px;
}

.time-btn {
    padding: 8px 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
}

.time-btn:hover {
    background: #e9ecef;
}

.time-btn.selected {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.time-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.btn-submit:hover:not(:disabled) {
    background: #0056b3;
}

.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-messages {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 992px) {
    .vera-booking-wrapper {
        flex-direction: column;
    }
    
    .vera-booking-form-left,
    .vera-booking-calendar-right {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .time-selection {
        flex-direction: column;
    }
    
    .calendar-container {
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .vera-booking-container {
        padding: 10px;
    }
    
    .vera-booking-form-left,
    .vera-booking-calendar-right {
        padding: 20px;
    }
    
    #vera-calendar {
        font-size: 0.9rem;
    }
    
    .calendar-day {
        padding: 8px 5px;
    }
    
    .time-btn {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .vera-booking-form .form-check-label {
        font-size: 13px;
    }
}
