.ls-alert-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
}

.ls-alert-hidden {
    display: none;
}

.ls-alert__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 52, 0.35);
    backdrop-filter: blur(2px);
}

.ls-alert {
    background: #ffffff;
    color: #2d3748;
    border: 1px solid #d9e6f2;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    padding: 20px 20px 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.ls-alert__message {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #0f264f;
    white-space: pre-line;
}

.ls-alert__actions {
    display: flex;
    justify-content: flex-end;
}

.ls-alert__ok {
    min-width: 88px;
    background: #ffad49;
    color: #fff;
    border: 1px solid #f29b33;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ls-alert__ok:hover {
    background: #f29b33;
}

.ls-alert-lock {
    overflow: hidden;
}
