.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.booking-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.booking-popup-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s ease-in-out;
}

.booking-popup-overlay.active .booking-popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close-btn:hover {
    color: #333;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.popup-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.popup-date-fields {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive Styles for Booking Popup */
@media (max-width: 768px) {
    .booking-popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: none;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-subtitle {
        font-size: 0.9rem;
    }

    .popup-date-fields {
        flex-direction: column;
        gap: 1rem;
    }

    .popup-date-fields input {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
        font-size: 0.95rem;
    }

    .date-icon {
        font-size: 1rem;
        left: 12px;
    }

    .popup-btn {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-popup-content {
        padding: 1.5rem 1rem;
        width: 98%;
        border-radius: 10px;
    }

    .popup-title {
        font-size: 1.3rem;
    }

    .popup-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .popup-close-btn {
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }

    .popup-date-fields {
        gap: 0.8rem;
    }

    .popup-date-fields input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .date-icon {
        font-size: 0.9rem;
        left: 10px;
    }

    .popup-btn {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

.date-input-container {
    position: relative;
    width: 100%;
}

.date-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.popup-date-fields input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem; /* Add padding for icon */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.popup-date-fields input:focus {
    outline: none;
    border-color: #f0ad4e;
    box-shadow: 0 0 0 3px rgba(240, 173, 78, 0.2);
}

.popup-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #f0ad4e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.popup-btn:hover {
    background-color: #eea236;
    transform: translateY(-2px);
}
