.overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-modal {
    background-color: var(--main-bg);
    width: 560px;
    max-width: 85%;
    max-height: 80%;
    border-radius: 10px;
    position: relative; 
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: thin;
    color: var(--main-color);
}

.popup-box-modal {
    padding: 30px;
}

.close-btn-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1rem;
    background: none;
    border: none;
    color: var(--main-color);
    z-index: 1000;
}

.modal-title{
    padding-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}