.status-banner {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
}

.status-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid #cde8cf;
}

.status-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid #ffd0cf;
}

.table-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.inline-form {
    display: inline;
}

.inline-form-block {
    display: block;
    margin-top: 10px;
}

.pager {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.muted {
    color: var(--text-secondary);
    font-size: .8rem;
}

.metric-note {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.thumb-40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dbe4ef;
}

.thumb-56 {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #dbe4ef;
}

.thumb-72 {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #dbe4ef;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .75rem;
}

.pill.ok {
    background: #ecfdf5;
    color: #047857;
}

.pill.off {
    background: #fff1f2;
    color: #be123c;
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 6px;
    border: 1px solid #dbe4ef;
}

.page-content {
    max-width: none;
    width: 100%;
    padding-bottom: 32px;
}

.helper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.helper-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.helper-card strong {
    display: block;
    margin-bottom: 4px;
}

.brand-fallback {
    display: none;
}

.legacy-logout-form {
    margin-top: 8px;
}

.legacy-logout-button {
    color: var(--danger);
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
}

.module-kicker {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--teal-light);
}

.progress-66 {
    width: 66%;
}

.progress-58 {
    width: 58%;
}

.field-actions {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.field-actions-wide {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.field-end {
    display: flex;
    align-items: flex-end;
}