.hidden {
    display: none;
}

#editProfileModal {
    display: none; /* Default hidden */
    z-index: 50; /* Ensure it's above other elements */
}

#editProfileModal.show {
    display: flex; /* Show the modal */
}

body.modal-open {
    overflow: hidden; /* Prevent scrolling */
}





