.text-important {
    color: var(--ly-header-orange);
}

.text-standard {
    color: var(--ly-bright-red);
}

.text-important, .text-standard {
    font-size: clamp(18px,1.3vw,22px);
}

    .text-important.centered, .text-standard.centered {
        text-align: center;
    }


body {
}

.ly-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20px;
    z-index: 10;
}

    .ly-modal.hidden, .ly-modal-overlay.hidden {
        display: none;
    }

.ly-modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(256, 256, 256, 0.5);
    backdrop-filter: blur(3px);
    z-index: 3;
}

.limit-modal {
    display: grid;
    place-items: center;
    gap: 40px;
    background-color: var(--ly-white);
    padding: 50px;
    border-radius: 30px;
}


.limit-modal {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    max-width: 80%;
    width: 400px;
}

    .limit-modal h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #e74c3c;
    }

    .limit-modal p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .limit-modal .error-code {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-bottom: 1.5rem;
    }

    .limit-modal .btn {
        display: inline-block;
        background-color: #3498db;
        color: #ffffff;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

        .limit-modal .btn:hover {
            background-color: #2980b9;
        }