#popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 3vh;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 2vh;
    font-family: kohingoor_bangala;
}

#failure-text {
    display: none;
}

#success-text {
    display: none;
}

#popup button {
    background-color: #E6E0D9;
}

#popup-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
}