.customModal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
}

.custom-modal-content {
    background: #fff;
    margin: 5% auto;
    width: 80%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-body {
    padding: 10px;
    overflow-y: auto;
    max-height: 80vh;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}