/* Saint Georges Booking Widget - Base Styles */

.sg-booking-container {
    display: flex;
    margin: 40px 0;
}

.sg-booking-widget {
    width: 100%;
    border-radius: 8px;
    padding: 40px;
}

.sg-booking-widget h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.sg-booking-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.sg-form-group {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.sg-datepicker {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: none !important;
    border-radius: 4px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sg-datepicker:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.sg-calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    stroke-width: 2;
}

.sg-booking-button {
    flex: 1;
    min-width: 150px;
    padding: 14px 28px;
    color: white !important;
    border: none !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sg-booking-button:hover {
    transform: translateY(-2px);
}

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

/* jQuery UI Datepicker */
.ui-datepicker {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 10px;
}

.ui-datepicker-header {
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-weight: bold;
}

.ui-state-active,
.ui-state-highlight {
    color: white !important;
}

.ui-datepicker-today a {
    background-color: #e8f4f8 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-booking-widget {
        padding: 25px;
    }
    
    .sg-booking-widget h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .sg-booking-form {
        flex-direction: column;
    }
    
    .sg-form-group {
        width: 100%;
    }
    
    .sg-booking-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sg-booking-widget {
        padding: 20px;
    }
    
    .sg-datepicker,
    .sg-booking-button {
        font-size: 16px;
        padding: 12px 36px 12px 14px;
    }
}
