/* ── Modern admin: rounded corners & spacing ─────────────────────────── */
/* Global border-radius for fieldsets, inlines, buttons, and messages.   */

/* ── Breadcrumb spacing ──────────────────────────────────────────────── */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
}

/* ── Fieldset modules ────────────────────────────────────────────────── */

fieldset.module {
    border-radius: 8px;
    overflow: hidden;
}

/* Collapsed fieldsets: full round since only the header is visible */
fieldset.collapsed {
    border-radius: 8px;
}

/* ── Inline groups (tabular) ─────────────────────────────────────────── */

.inline-group .tabular fieldset.module {
    border-radius: 8px;
    overflow: hidden;
}

/* Add-row at the bottom of inline tables */
.inline-group div.add-row,
.inline-group .tabular tr.add-row td {
    border-radius: 0 0 8px 8px;
}

/* ── Submit row ──────────────────────────────────────────────────────── */

.submit-row {
    border-radius: 8px;
    overflow: hidden;
}

/* ── Messages ────────────────────────────────────────────────────────── */

.messagelist li {
    border-radius: 6px;
}

/* ── Changelist module (filters, result list) ────────────────────────── */

#changelist-filter {
    border-radius: 8px;
    overflow: hidden;
}

#changelist-form .results {
    border-radius: 8px;
    overflow: hidden;
}
