.user-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.delete-user-form {
    margin: 0;
}
.user-actions .edit-link,
.delete-link {
    appearance: none;
    border: 0;
    border-radius: 5px;
    padding: 5px 10px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    cursor: pointer;
    text-decoration: none;
}
.user-actions .edit-link {
    background: #e0ecff;
    color: #1769e0;
}
.user-actions .edit-link:hover {
    background: #cfe1ff;
}
.delete-link {
    background: #fde6e7;
    color: #dc2626;
}
.delete-link:hover {
    background: #fbd4d6;
}
.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 11px 13px;
    border-radius: 8px;
    margin-bottom: 18px;
}
