/* Modal CSS */
.modal {
    color: #000;
    display: none;
    position: fixed;
    z-index: 9999;
    /* Ensure it appears above other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: "Poppins", sans-serif;
}

.modal-content {
    background-color: #fefefe;
    margin: 20px auto;
    /* Adjust margin to center horizontally */
    padding: 20px;
    border-radius: 10px;
    /* Make the modal width responsive */
    max-width: 700px;
    /* Set maximum width for larger screens */
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer {
    text-align: right;
}

.btn-close {
    font-size: 28px;
    cursor: pointer;
    background-color: transparent;
    color: black;
    border: none;
    opacity: .5;
}

.btn-close:hover {
    color: #000;
    /* Apply color change on hover */
    opacity: 1;
    /* Increase opacity on hover */
    opacity: 70%;
    color: #000000;

}

button.modal-close-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #34425A;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button.modal-close-btn:hover {
    background-color: #252F40;
    /* Hover background color */
    color: #fff !important;
    /* Ensure text color remains white */
}


/* MODAL TITLE */


.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Poppins, sans-serif;

}