/* Popup Background */
#loanPopup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Container */
#loanPopupContent {
    background: #ffffff;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    font-family: 'Poppins', sans-serif;
}

/* Close Button */
#loanPopupContent .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Section Titles */
.loan-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Forms */
.loan-form {
    margin-top: 10px;
    margin-bottom: 20px;
}
.loan-form input, .loan-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.loan-form button {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.loan-form button:hover {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
}

/* Lists */
.loan-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.loan-list ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
