
.booking-datepicker-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.bdp-wrapper {
    display: flex;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bdp-date-section {
    flex: 1;
    padding: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.bdp-date-section:hover {
    background-color: rgba(255,255,255,0.1);
}

.bdp-label {
    margin: 0 0 10px 0;
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bdp-date-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bdp-day {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

.bdp-month-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bdp-month {
    font-size: 16px;
    text-transform: capitalize;
}

.bdp-calendar-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.bdp-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.bdp-button-section {
    display: flex;
    align-items: center;
}

.bdp-check-button {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.bdp-check-button:hover {
    background: color-mix(in srgb, var(--primary-color) 80%, black 20%);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bdp-wrapper {
        flex-direction: column;
    }
    
    .bdp-date-section {
        padding: 15px;
    }
    
    .bdp-day {
        font-size: 36px;
    }
    
    .bdp-check-button {
        width: 100%;
        padding: 15px;
    }
}

/* jQuery UI Datepicker Customization */
.ui-datepicker {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

.ui-datepicker .ui-datepicker-header {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
}

.ui-datepicker .ui-datepicker-calendar a {
    color: var(--text-color);
}

.ui-datepicker .ui-datepicker-calendar .ui-state-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
