sorry, hate to see it, but your buttons are on the right corner of the box, simple fix
.form-actions {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
margin-top: 1rem;
padding: 0.75rem;
border-top: 1px solid var(--border);
}
moreover the popup is too small, so that in settings, notifications button is right out of the box
.modal-content.modal-lg {
max-width: 540px;
max-height: 85vh;
display: flex;
flex-direction: column;
}
and the settings the top boxes, need a padding to the top, so
.modal-tabs {
display: flex;
gap: 0.5rem;
padding: 0.75rem;
border-bottom: 1px solid var(--border);
}