.confirm-alert {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.confirm-alert--open {
    display: flex;
}

.confirm-alert__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.confirm-alert__card {
    position: relative;
    z-index: 2;
    width: min(420px, calc(100vw - 32px));
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.confirm-alert__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.confirm-alert__message {
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body-md-size);
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
}

.confirm-alert__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.confirm-alert__btn {
    min-width: 130px;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body-secondary-size);
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.confirm-alert__btn--cancel {
    background: #f3f3f3;
    color: #111111;
}

.confirm-alert__btn--cancel:hover {
    background: #e7e7e7;
}

.confirm-alert__btn--confirm {
    background: #ef4444;
    color: #ffffff;
}

.confirm-alert__btn--confirm:hover {
    background: #dc2626;
}

.confirm-alert__btn--ok {
    background: #2B7DE5;
    color: #ffffff;
}

.confirm-alert__btn--ok:hover {
    background: #1f6dd1;
}
