.warning-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .warning-modal {
        background: #ffffff;
        max-width: 680px;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
        padding: 24px;
        max-height: 100vh;
        overflow-y: auto;
    }
    .warning-modal h2 {
        text-align: center;
        padding-bottom: 20px;
    }

    .warning-modal-text {
        margin: 0;
        color: #1f1f1f;
        font-size: 18px;
        line-height: 1.45;
    }
    @media (max-width: 680px) {
        .warning-modal-text {
            font-size: 15px;
        }
    }

    .button-modale {
        margin-top: 10px;
        margin-bottom: 10px;
        border: 0;
        border-radius: 6px;
        background: #407ea8;
        color: #ffffff;
        cursor: pointer;
        font-family: Comfortaa, sans-serif;
        font-size: 18px;
        font-weight: 700;
        text-transform: none;
        padding: 12px 24px;
        text-decoration: none;
    }
    .button-modale:hover {
        background: #c30;
        color: #fff;
    }
    @media (max-width: 680px) {
        .button-modale {
            font-size: 15px;
        }
    }
    #warning-modal-close {
        cursor: pointer;
    }
    #warning-modal-close:hover {
        text-decoration: underline;
    }