/* Leasing Modal Styles - Similar to pspopup */
.leasing-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.leasing-modal-overlay.leasing-modal-active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

body.leasing-modal-open {
    overflow: hidden;
}

.leasing-modal-container {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.leasing-modal-overlay.leasing-modal-active .leasing-modal-container {
    transform: scale(1);
}

.leasing-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.leasing-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.leasing-modal-close svg {
    width: 20px;
    height: 20px;
}

.leasing-modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.leasing-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #E5E5E5;
    flex-shrink: 0;
}

.leasing-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.leasing-modal-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .leasing-modal-container {
        width: 95%;
        max-height: 95vh;
        margin: 10px auto;
    }
    
    .leasing-modal-header {
        padding: 20px 20px 16px;
    }
    
    .leasing-modal-title {
        font-size: 20px;
    }
    
    .leasing-modal-content {
        padding: 20px;
    }
}












