/*************** Popup *************************/

#popup {
    position: fixed;
    inset: 0;
    background: rgba(233, 230, 230, 0.7);
    padding: 20px;
    padding-top: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.popup-content {
    background: rgb(240, 242, 240);
    border-radius: 12px;
    padding: 10px 10px 10px 10px;
    max-width: 650px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 50px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}