/* Full-screen dimmed overlay */
.intl-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal box (dark mode) */
.intl-notice-modal {
    background: #121212;
    color: #ffffff;
    padding: 3rem; /* increased padding */
    border-radius: 8px;
    max-width: 600px; /* wider modal */
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

    /* Notice text */
    .intl-notice-modal p {
        margin-bottom: 1.5rem;
        line-height: 1.5;
        font-size: 1.25rem; /* larger body text */
    }

    /* Acknowledge button */
    .intl-notice-modal button {
        padding: 1rem 2rem; /* bigger click area */
        border: none;
        border-radius: 4px;
        color: #ffffff;
        font-size: 1.125rem; /* larger button text */
        cursor: pointer;
        transition: opacity 0.2s;
    }

        .intl-notice-modal button:hover {
            opacity: 0.9;
        }
