.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

    .modal-overlay.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.booking-form-widget {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.widget-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;  
    font-size: 24px;
    font-weight: 600;
    position: relative;
    margin: 0;
    border-radius:15px;
}

    .widget-title span {
        display: block;
        margin-top: 10px;
        font-size: 12px;
        color: #ffe6e6;
        font-weight: 400;
    }

#closeModal {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #e74c3c;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    #closeModal:hover {
        transform: rotate(90deg);
        background: #e74c3c;
        color: white;
    }

.sidebar-booking-form {
    padding: 30px;
}

.booking-item {
    margin-bottom: 20px;
}

    .booking-item label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

.bk-item {
    position: relative;
}

    .bk-item i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #667eea;
        font-size: 16px;
    }

.form-control, .datepicker {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .form-control:focus, .datepicker:focus{
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }



.booking-guest-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

    .booking-guest-box p {
        margin: 10px 0;
        color: #555;
        font-size: 14px;
        line-height: 1.6;
    }

    .booking-guest-box .bk-item {
        margin-top: 15px;
    }

    .booking-guest-box span {
        color: #333;
    }

.submit-button {
    margin-top: 25px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form-widget::-webkit-scrollbar {
    width: 8px;
}

.booking-form-widget::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.booking-form-widget::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .booking-form-widget {
        margin: 10px;
    }

    .sidebar-booking-form {
        padding: 20px;
    }

    .widget-title {
        padding: 20px;
        font-size: 20px;
    }

    #closeModal {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}
