.confirm-backdrop {
    align-items: center;
    background: rgba(0, 0, 0, .72);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1.25rem;
    position: fixed;
    z-index: 1000;
}

.confirm-dialog {
    background: #0f1319;
    border: 1px solid #27303b;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    max-width: 420px;
    padding: 1.3rem;
    width: min(420px, 100%);
}

.confirm-dialog h2 {
    color: #f5f5f5;
    font-size: clamp(1.45rem, 4vw, 2rem);
    margin: .25rem 0 .55rem;
}

.confirm-dialog p:not(.system-label) {
    color: #aeb6c2;
    line-height: 1.55;
    margin: 0;
}

.confirm-actions {
    display: grid;
    gap: .65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.confirm-actions button {
    justify-content: center;
    min-height: 42px;
}

@media (max-width: 520px) {
    .confirm-actions {
        grid-template-columns: 1fr;
    }
}
