#quiz-preservation-popup {
    align-items: center;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    color: #1b1b1b;
    display: flex;
    font-family: 'Abadi',sans-serif;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.popup-btn {
    align-items: center;
    background-color: #376040; /* Default for .yes-btn */
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 5px;
    justify-content: center;
    margin-bottom: 0 !important;
    padding: 20px 0;
    width: 100%;
}

#cancel-submit {
    background-color: #d9534f !important;
}

#cancel-submit:hover {
    background-color: #d9534f !important;
}

.popup-buttons {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
}

.popup-content {
    align-items: center;
    background-color: #fffff6;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-width: 500px;
    padding: 50px;
    position: relative;
    row-gap: 20px;
    text-align: center;
    width: 50%;
}

.popup-heading {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.7rem;
    margin-bottom: 10px;
}

.popup-paragraph {
    font-size: 1rem;
    line-height: 1.4rem;
    opacity: 0.75;
}

@media (max-width: 640px) {
    .popup-content {
        padding: 30px;
        max-width: 90%;
        width: 90%;
    }
}

@media (max-width: 768px) {
    .popup-content {
        padding: 40px;
        max-width: 80%;
        width: 80%;
    }
}