a.confirm-link {
    /* nothing special */
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    max-width: 340px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    line-height: 1.4;
}
.modal-box p {
    margin: 0 0 16px;
    white-space: pre-line;
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}