.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.popup-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #efefef;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.popup-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #212121 ;
}

.container-btn-popup {
    display: flex;
    justify-content: flex-end;
}

.popup-link {
    cursor: pointer;
    font-weight: bold;
}
.popup-link:hover {
    text-decoration: none;
}
