﻿#exitModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

    #exitModal.show {
        display: flex;
    }

    #exitModal .exit-modal-content {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        max-width: 420px;
        width: 100%;
        text-align: center;
    }

    #exitModal h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    #exitModal p {
        margin-bottom: 1.5rem;
    }

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
