:root {
    --utf-bg: #070b0f;
    --utf-bg-elevated: #0d131a;
    --utf-surface: #111820;
    --utf-surface-2: #151e27;
    --utf-surface-glass: rgba(12, 17, 23, 0.84);
    --utf-stroke: rgba(255, 255, 255, 0.12);
    --utf-stroke-strong: rgba(255, 255, 255, 0.22);
    --utf-text: #f5f7fa;
    --utf-text-muted: #aeb7c2;
    --utf-text-subtle: #778391;
    --utf-gold: #baa05a;
    --utf-gold-strong: #d4ad54;
    --utf-gold-muted: rgba(186, 160, 90, 0.16);
    --utf-success: #22c55e;
    --utf-success-bg: rgba(34, 197, 94, 0.14);
    --utf-warning: #f59e0b;
    --utf-warning-bg: rgba(245, 158, 11, 0.16);
    --utf-danger: #ef4444;
    --utf-danger-bg: rgba(239, 68, 68, 0.16);
    --utf-info: #60a5fa;
    --utf-info-bg: rgba(96, 165, 250, 0.14);
    --utf-radius-sm: 4px;
    --utf-radius-md: 8px;
    --utf-radius-lg: 12px;
    --utf-command-button-height: 38px;
    --utf-command-button-padding-x: 0.95rem;
    --utf-shadow-panel: 0 18px 60px rgba(0, 0, 0, 0.34);
    --utf-scrollbar-track: #090e14;
    --utf-scrollbar-track-elevated: #0d141c;
    --utf-scrollbar-thumb: rgba(186, 160, 90, 0.58);
    --utf-scrollbar-thumb-hover: rgba(212, 173, 84, 0.88);
    --utf-scrollbar-thumb-active: var(--utf-gold-strong);
    --neutral-foreground-rest: var(--utf-text);
    --neutral-foreground-hint: var(--utf-text-muted);
    --neutral-stroke-rest: var(--utf-stroke);
    --neutral-stroke-input-rest: var(--utf-stroke-strong);
    --neutral-fill-input-rest: #0b1117;
    --neutral-fill-secondary-rest: var(--utf-surface-2);
    --neutral-layer-1: var(--utf-surface);
    --highlight-bg: var(--utf-gold-muted);
    --success: var(--utf-success);
    --error: var(--utf-danger);
}

html {
    background: var(--utf-bg);
    color-scheme: dark;
    scrollbar-color: var(--utf-scrollbar-thumb) var(--utf-scrollbar-track);
    scrollbar-width: thin;
}

* {
    scrollbar-color: var(--utf-scrollbar-thumb) var(--utf-scrollbar-track);
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    height: 0.75rem;
    width: 0.75rem;
}

*::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, var(--utf-scrollbar-track-elevated), var(--utf-scrollbar-track));
}

*::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg, var(--utf-scrollbar-thumb-hover), var(--utf-scrollbar-thumb));
    border: 2px solid var(--utf-scrollbar-track);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, var(--utf-scrollbar-thumb-active), var(--utf-gold));
}

*::-webkit-scrollbar-thumb:active {
    background: var(--utf-scrollbar-thumb-active);
}

*::-webkit-scrollbar-corner {
    background: var(--utf-scrollbar-track);
}

body {
    background:
        radial-gradient(circle at 18% 0%, rgba(186, 160, 90, 0.08), transparent 32rem),
        linear-gradient(180deg, #070b0f 0%, #0a1016 48%, #070b0f 100%);
    color: var(--utf-text);
    font-family: Roboto, "Segoe UI", system-ui, sans-serif;
    height: 100dvh;
    margin: 0;
}

#app {
    height: 100%;
}

a {
    color: inherit;
}

.utf-shell {
    background:
        radial-gradient(circle at 18% 0%, rgba(186, 160, 90, 0.09), transparent 32rem),
        linear-gradient(180deg, #070b0f 0%, #0a1016 48%, #070b0f 100%);
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    color: var(--utf-text);
    min-height: 100dvh;
}

.utf-button {
    align-items: center;
    border-radius: var(--utf-radius-sm);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.45rem;
    justify-content: center;
    line-height: 1;
    min-height: 38px;
    padding: 0 0.95rem;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
    white-space: nowrap;
}

.utf-button--primary {
    background: var(--utf-gold);
    border: 1px solid var(--utf-gold-strong);
    color: #101014;
}

.utf-button--danger {
    background: var(--utf-danger);
    border: 1px solid var(--utf-danger);
    color: #fff;
}

.utf-button--danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.utf-button--ghost {
    background: transparent;
    border: 1px solid var(--utf-stroke-strong);
    color: var(--utf-text);
}

.utf-button--ghost:hover,
.utf-button--ghost.active {
    background: var(--utf-gold-muted);
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-button:focus-visible {
    outline: 2px solid rgba(186, 160, 90, 0.32);
    outline-offset: 2px;
}

.utf-button:disabled,
.utf-button--disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.utf-button__icon {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    flex: 0 0 auto;
}

.utf-button fluent-icon,
.utf-button__icon fluent-icon {
    color: currentColor;
    display: block;
    opacity: 1;
}

.utf-button--primary .utf-button__icon,
.utf-button--primary fluent-icon {
    color: #101014;
}

.utf-button--danger .utf-button__icon,
.utf-button--danger fluent-icon {
    color: #fff;
}

.utf-command-button {
    appearance: none;
    box-sizing: border-box;
    flex: 0 0 auto;
    height: var(--utf-command-button-height);
    max-width: 100%;
    min-height: var(--utf-command-button-height);
    min-width: 0;
    padding-block: 0;
    padding-inline: var(--utf-command-button-padding-x);
    width: fit-content;
}

.utf-community-shell {
    display: flex;
    flex-direction: column;
}

.utf-community-nav {
    align-items: center;
    background: linear-gradient(180deg, rgba(7, 11, 15, 0.96), rgba(7, 11, 15, 0.84));
    border-bottom: 1px solid var(--utf-stroke);
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(14rem, auto) minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 20;
}

.utf-community-brand {
    align-items: center;
    color: var(--utf-text);
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 800;
    gap: 0.75rem;
    letter-spacing: 0;
    min-width: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.utf-community-brand img {
    height: 40px;
    width: 40px;
}

.utf-community-links {
    align-items: center;
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    min-width: 0;
}

.utf-community-link,
.utf-community-mobile-link {
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    font-size: 0.92rem;
    font-weight: 650;
    padding: 0.7rem 0.8rem;
    text-decoration: none;
}

.utf-community-link:hover,
.utf-community-link.active,
.utf-community-mobile-link:hover,
.utf-community-mobile-link.active {
    color: var(--utf-gold-strong);
}

.utf-community-link.active {
    box-shadow: inset 0 -2px 0 var(--utf-gold);
}

.utf-community-actions {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: end;
}

.utf-command-entry {
    min-height: 36px;
}

.utf-steam-signin {
    align-items: center;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    display: inline-flex;
    gap: 0.55rem;
    min-height: 38px;
    padding: 0 0.75rem;
    text-decoration: none;
}

.utf-steam-signin img {
    display: block;
    max-height: 22px;
}

.utf-mobile-menu-button,
.utf-command-drawer-button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    display: none;
    flex-direction: column;
    gap: 4px;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
}

.utf-mobile-menu-button span,
.utf-command-drawer-button span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 18px;
}

.utf-community-mobile-menu {
    background: var(--utf-surface-glass);
    border-bottom: 1px solid var(--utf-stroke);
    display: none;
    padding: 0.75rem;
}

.utf-community-mobile-link {
    display: block;
}

.utf-community-mobile-link--accent {
    border: 1px solid var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-mobile-menu-section {
    border-top: 1px solid var(--utf-stroke);
    color: var(--utf-text-subtle);
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0.5rem 0 0;
    padding: 0.9rem 0.8rem 0.45rem;
    text-transform: uppercase;
}

.utf-community-main {
    flex: 1;
    min-width: 0;
}

.utf-community-footer {
    align-items: center;
    background: #06090d;
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 64px;
    padding: 0.75rem 1.5rem;
}

.utf-footer-actions,
.utf-footer-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.utf-footer-links a {
    align-items: center;
    color: var(--utf-text-muted);
    display: inline-flex;
    gap: 0.35rem;
    text-decoration: none;
}

.utf-footer-links a:hover {
    color: var(--utf-gold-strong);
}

.utf-command-shell {
    background:
        radial-gradient(circle at 78% 4%, rgba(96, 165, 250, 0.06), transparent 30rem),
        linear-gradient(180deg, #070b0f 0%, #0a1016 48%, #070b0f 100%);
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    color: var(--utf-text);
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
}

.utf-command-nav {
    background: linear-gradient(180deg, #070b0f, #0c1218);
    border-right: 1px solid var(--utf-stroke);
    height: 100dvh;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem;
}

.utf-command-nav__brand {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 0.75rem;
    padding: 0 0 1rem;
}

.utf-command-nav__brand img {
    height: 42px;
    width: 42px;
}

.utf-command-nav__brand div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.utf-command-nav__brand span {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.utf-command-nav__brand strong {
    color: var(--utf-text);
    font-size: 1rem;
}

.utf-command-nav__groups {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.25rem;
}

.utf-command-nav__group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.utf-command-nav__label {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 0.65rem;
    text-transform: uppercase;
}

.utf-command-link {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    display: flex;
    gap: 0.65rem;
    min-height: 40px;
    padding: 0 0.65rem;
    text-decoration: none;
}

.utf-command-link--has-children {
    padding-right: 0.45rem;
}

.utf-command-link__disclosure {
    align-items: center;
    color: var(--utf-text-subtle);
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    margin-left: auto;
    transition: color 0.16s ease, transform 0.16s ease;
}

.utf-command-link[aria-expanded="true"] .utf-command-link__disclosure {
    color: var(--utf-gold);
    transform: rotate(90deg);
}

.utf-command-link:hover,
.utf-command-link.active {
    background: var(--utf-gold-muted);
    border-color: rgba(186, 160, 90, 0.34);
    color: var(--utf-text);
}

.utf-command-link:hover .utf-command-link__disclosure,
.utf-command-link.active .utf-command-link__disclosure {
    color: var(--utf-text);
}

.utf-command-link.active {
    box-shadow: inset 3px 0 0 var(--utf-gold);
}

.utf-command-sublinks {
    border-left: 1px solid rgba(186, 160, 90, 0.28);
    display: grid;
    gap: 0.18rem;
    margin: 0.2rem 0 0.35rem 1.18rem;
    padding-left: 0.72rem;
}

.utf-command-sublinks[hidden] {
    display: none;
}

.utf-command-sublink {
    border: 1px solid transparent;
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-subtle);
    font-size: 0.82rem;
    font-weight: 750;
    min-height: 30px;
    padding: 0.42rem 0.55rem;
    text-decoration: none;
}

.utf-command-sublink:hover,
.utf-command-sublink.active {
    background: rgba(186, 160, 90, 0.12);
    border-color: rgba(186, 160, 90, 0.3);
    color: var(--utf-text);
}

.utf-command-main {
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    height: 100dvh;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.utf-command-topbar {
    align-items: center;
    background: rgba(13, 19, 26, 0.96);
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    min-width: 0;
    padding: 0 1.25rem;
}

.utf-command-topbar__title {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.utf-command-topbar__title span {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.utf-command-topbar__title strong {
    color: var(--utf-text);
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.utf-command-topbar__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: end;
    margin-left: auto;
    min-width: 0;
}

.utf-command-content {
    min-height: 0;
    min-width: 0;
    overflow-y: auto;
    padding: 1.25rem;
}

.utf-command-scrim {
    display: none;
}

.utf-panel {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
}

.utf-page-header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.utf-page-header h1 {
    color: var(--utf-text);
    font-size: clamp(2rem, 2.8rem, 2.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.98;
    margin: 0;
    text-transform: uppercase;
}

.utf-page-header p {
    color: var(--utf-text-muted);
    line-height: 1.55;
    margin: 0.75rem 0 0;
    max-width: 54rem;
}

.utf-command-page-header__copy {
    min-width: 0;
}

.utf-command-page-header__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

@media (max-width: 720px) {
    .utf-command-page-header {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-command-page-header__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-command-page-header__actions .utf-button {
        width: 100%;
    }
}

.utf-management-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.utf-command-toolbar {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.event-admin-toolbar {
    column-gap: 0.55rem;
    row-gap: 0.6rem;
}

.event-admin-toolbar .utf-command-search-field {
    flex: 1 1 17rem;
    max-width: 19rem;
    min-width: min(100%, 15rem);
}

.event-admin-toolbar .utf-filter-chip {
    min-height: 38px;
    padding-inline: 0.72rem;
    white-space: nowrap;
}

@media (min-width: 1600px) {
    .event-admin-toolbar .utf-command-search-field {
        flex-basis: 34rem;
        max-width: min(52rem, 48vw);
    }
}

.utf-command-metrics {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.utf-command-metric {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
    display: grid;
    font: inherit;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.95rem;
    text-align: left;
    text-decoration: none;
}

button.utf-command-metric {
    cursor: pointer;
}

button.utf-command-metric:hover:not(:disabled),
button.utf-command-metric:focus-visible,
.utf-command-metric--active {
    border-color: var(--utf-gold);
    outline: none;
}

.utf-command-metric--active {
    box-shadow: inset 3px 0 0 var(--utf-gold), var(--utf-shadow-panel);
}

.utf-command-metric--disabled {
    cursor: not-allowed;
    opacity: 0.54;
}

.utf-command-metric strong {
    color: var(--utf-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.15;
}

.utf-command-metric > span:last-child:not(.utf-status) {
    color: var(--utf-text-muted);
    line-height: 1.45;
}

.utf-command-field,
.utf-command-search-field {
    color: var(--utf-text-subtle);
    display: flex;
    flex: 1 1 18rem;
    flex-direction: column;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 0.35rem;
    min-width: min(100%, 16rem);
    text-transform: uppercase;
}

.utf-command-input,
.utf-command-search {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    box-sizing: border-box;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 0 0 1px rgba(255, 255, 255, 0.018);
    caret-color: var(--utf-gold);
    color: var(--utf-text);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 38px;
    min-width: 0;
    padding: 0 0.85rem;
    text-transform: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    width: 100%;
}

.utf-command-input::placeholder,
.utf-command-search::placeholder {
    color: rgba(212, 220, 224, 0.46);
}

.utf-command-input:hover,
.utf-command-search:hover {
    border-color: rgba(210, 220, 225, 0.34);
}

.utf-command-form {
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
    padding-top: 1rem;
}

.utf-command-form label {
    color: var(--utf-text-subtle);
    display: grid;
    font-size: 0.74rem;
    font-weight: 850;
    gap: 0.35rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.utf-command-form :is(input, select, textarea) {
    appearance: none;
    background: linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    box-sizing: border-box;
    color: var(--utf-text);
    font-size: 0.92rem;
    min-height: 38px;
    padding: 0.58rem 0.75rem;
    text-transform: none;
    width: 100%;
}

.utf-command-form textarea {
    line-height: 1.5;
    resize: vertical;
}

.utf-command-field--wide,
.utf-command-actions {
    grid-column: 1 / -1;
}

.utf-command-check {
    align-items: center;
    display: flex !important;
    flex-direction: row;
}

.utf-command-check input {
    min-height: auto;
    width: auto;
}

.utf-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.utf-command-two-column {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.utf-link-button {
    background: transparent;
    border: 0;
    color: var(--utf-gold-strong);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 850;
    margin-right: 0.55rem;
    padding: 0;
}

.utf-link-button:hover,
.utf-link-button:focus-visible {
    color: var(--utf-gold);
    outline: none;
}

@media (max-width: 900px) {
    .utf-command-two-column,
    .utf-command-form {
        grid-template-columns: 1fr;
    }
}

.utf-command-input:focus,
.utf-command-search:focus {
    border-color: var(--utf-gold);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(186, 160, 90, 0.2);
    outline: 2px solid rgba(186, 160, 90, 0.26);
    outline-offset: 2px;
}

fluent-dialog {
    color-scheme: dark;
}

fluent-dialog::part(control) {
    background: var(--utf-bg-elevated);
    border: 1px solid var(--utf-stroke);
    color: var(--utf-text);
}

fluent-dialog::part(title),
fluent-dialog :is(.dialog-title, .dialog-header, .dialog-footer, .fluent-dialog-header, .fluent-dialog-footer, [slot="title"], [slot="footer"]) {
    background: var(--utf-bg-elevated);
    color: var(--utf-text);
}

fluent-dialog :is(h1, h2, h3, [id*="title" i]) {
    color: var(--utf-text);
}

fluent-dialog :is(header, [role="heading"], [class*="header" i], [class*="title" i]),
fluent-dialog :is(header, [role="heading"], [class*="header" i], [class*="title" i]) * {
    color: var(--utf-text) !important;
}

.utf-data-table-shell {
    overflow: hidden;
}

.utf-command-ledger {
    overflow: hidden;
}

.utf-command-workspace {
    align-items: start;
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.utf-command-detail {
    min-width: 0;
    overflow: hidden;
}

.utf-command-ledger__header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.utf-command-ledger__header h2 {
    color: var(--utf-text);
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0.2rem 0 0;
}

.utf-command-table-scroll,
.audit-table-scroll,
.billing-table-scroll,
.cloud-table-scroll,
.data-table-scroll,
.modpacks-table-scroll,
.terrains-table-scroll,
.workers-jobs-table-scroll {
    overflow-x: auto;
}

.utf-command-table,
.audit-table,
.billing-table,
.cloud-table,
.data-table,
.modpacks-table,
.terrains-table,
.workers-jobs-table {
    border-collapse: collapse;
    width: 100%;
}

.utf-command-table th,
.utf-command-table td,
.audit-table th,
.audit-table td,
.billing-table th,
.billing-table td,
.cloud-table th,
.cloud-table td,
.data-table th,
.data-table td,
.modpacks-table th,
.modpacks-table td,
.terrains-table th,
.terrains-table td,
.workers-jobs-table th,
.workers-jobs-table td {
    border-bottom: 1px solid var(--utf-stroke);
    padding: 0.82rem 1rem;
    text-align: left;
    vertical-align: middle;
}

.utf-command-table th,
.audit-table th,
.billing-table th,
.cloud-table th,
.data-table th,
.modpacks-table th,
.terrains-table th,
.workers-jobs-table th {
    background: var(--utf-surface-2);
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.utf-command-table td,
.audit-table td,
.billing-table td,
.cloud-table td,
.data-table td,
.modpacks-table td,
.terrains-table td,
.workers-jobs-table td {
    color: var(--utf-text-muted);
}

.utf-command-table td strong,
.utf-command-table td span:not(.utf-status):not(.utf-status__dot),
.audit-table td strong,
.audit-table td span:not(.utf-status):not(.utf-status__dot),
.billing-table td strong,
.billing-table td span:not(.utf-status):not(.utf-status__dot),
.cloud-table td strong,
.cloud-table td span:not(.utf-status):not(.utf-status__dot),
.data-table td strong,
.data-table td span:not(.utf-status):not(.utf-status__dot),
.modpacks-table td strong,
.modpacks-table td span:not(.utf-status):not(.utf-status__dot),
.terrains-table td strong,
.terrains-table td span:not(.utf-status):not(.utf-status__dot),
.workers-jobs-table td strong,
.workers-jobs-table td span:not(.utf-status):not(.utf-status__dot) {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.utf-command-table td strong,
.audit-table td strong,
.billing-table td strong,
.cloud-table td strong,
.data-table td strong,
.modpacks-table td strong,
.terrains-table td strong,
.workers-jobs-table td strong {
    color: var(--utf-text);
    font-weight: 750;
}

.utf-command-table td span:not(.utf-status):not(.utf-status__dot),
.audit-table td span:not(.utf-status):not(.utf-status__dot),
.billing-table td span:not(.utf-status):not(.utf-status__dot),
.cloud-table td span:not(.utf-status):not(.utf-status__dot),
.data-table td span:not(.utf-status):not(.utf-status__dot),
.modpacks-table td span:not(.utf-status):not(.utf-status__dot),
.terrains-table td span:not(.utf-status):not(.utf-status__dot),
.workers-jobs-table td span:not(.utf-status):not(.utf-status__dot) {
    color: var(--utf-text-subtle);
    font-size: 0.83rem;
    margin-top: 0.2rem;
}

.utf-command-table tbody tr,
.audit-table tbody tr,
.billing-table tbody tr,
.cloud-table tbody tr,
.data-table tbody tr,
.modpacks-table tbody tr,
.terrains-table tbody tr,
.workers-jobs-table tbody tr {
    transition: background-color 160ms ease;
}

.utf-command-table tbody tr.utf-command-row--interactive {
    cursor: pointer;
}

.utf-command-table tbody tr.utf-command-row--interactive:focus-visible {
    background: var(--utf-gold-muted);
    outline: 2px solid rgba(186, 160, 90, 0.46);
    outline-offset: -2px;
}

.utf-command-table tbody tr:hover,
.audit-table tbody tr:hover,
.billing-table tbody tr:hover,
.cloud-table tbody tr:hover,
.data-table tbody tr:hover,
.modpacks-table tbody tr:hover,
.terrains-table tbody tr:hover,
.workers-jobs-table tbody tr:hover,
.utf-command-row--selected,
.audit-row--selected,
.billing-row--selected,
.modpacks-row--selected,
.terrains-row--selected,
.workers-jobs-row--selected {
    background: var(--utf-gold-muted);
}

.utf-command-row--selected,
.audit-row--selected,
.billing-row--selected,
.modpacks-row--selected,
.terrains-row--selected,
.workers-jobs-row--selected {
    box-shadow: inset 3px 0 0 var(--utf-gold);
}

.cloud-ops-page {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 0;
}

.cloud-ops-explainer {
    display: grid;
    gap: 0.35rem;
    line-height: 1.45;
}

.cloud-ops-toolbar {
    align-items: flex-end;
    background: rgba(17, 24, 32, 0.72);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.65rem;
}

.cloud-ops-status-strip {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cloud-ops-signal {
    background: linear-gradient(180deg, rgba(21, 30, 39, 0.96), rgba(13, 19, 26, 0.96));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    color: var(--utf-text);
    display: grid;
    gap: 0.25rem;
    min-height: 5rem;
    min-width: 0;
    padding: 0.8rem;
    text-decoration: none;
}

.cloud-ops-signal:hover,
.cloud-ops-signal.active {
    border-color: rgba(186, 160, 90, 0.44);
}

.cloud-ops-signal span {
    color: var(--utf-text-subtle);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cloud-ops-signal strong {
    color: var(--utf-text);
    font-size: 1.1rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.cloud-ops-signal em {
    color: var(--utf-text-muted);
    font-style: normal;
    line-height: 1.35;
}

.cloud-ops-ledger {
    min-width: 0;
    overflow: hidden;
}

.cloud-ops-overview-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    padding: 1rem;
}

.cloud-ops-overview-card {
    background:
        linear-gradient(135deg, rgba(186, 160, 90, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(21, 30, 39, 0.96), rgba(10, 16, 22, 0.98));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 18px 48px rgba(0, 0, 0, 0.22);
    color: var(--utf-text);
    display: grid;
    gap: 0.8rem;
    min-height: 9rem;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cloud-ops-overview-card::before {
    background: linear-gradient(90deg, rgba(212, 173, 84, 0.9), transparent 78%);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.cloud-ops-overview-card:hover,
.cloud-ops-overview-card:focus-visible,
.cloud-ops-overview-card.active {
    border-color: rgba(186, 160, 90, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 56px rgba(0, 0, 0, 0.32);
    outline: none;
    transform: translateY(-1px);
}

.cloud-ops-overview-card .utf-status {
    align-self: start;
}

.cloud-ops-overview-card strong {
    color: var(--utf-text);
    font-size: 1.22rem;
    font-weight: 850;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.cloud-ops-overview-card > span:not(.utf-status):not(.utf-status__dot) {
    color: var(--utf-text-muted);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.cloud-ops-table-scroll {
    max-height: min(72dvh, 54rem);
    overflow: auto;
}

.cloud-ops-table {
    min-width: 64rem;
}

.cloud-ops-table--wide {
    min-width: 78rem;
}

.cloud-ops-table th {
    position: sticky;
    top: 0;
    z-index: 2;
}

.cloud-ops-table th,
.cloud-ops-table td {
    padding-block: 0.68rem;
}

.cloud-ops-click-row {
    cursor: pointer;
}

.cloud-ops-empty {
    color: var(--utf-text-muted);
    padding: 1.1rem;
}

.cloud-ops-success {
    background: var(--utf-success-bg);
    border-color: rgba(34, 197, 94, 0.34);
    color: var(--utf-text);
}

.cloud-ops-identity {
    align-items: center;
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.98), rgba(13, 19, 26, 0.96));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
    padding: 1rem;
}

.cloud-ops-identity > div {
    min-width: 0;
}

.cloud-ops-identity h2 {
    color: var(--utf-text);
    font-size: 1.28rem;
    line-height: 1.2;
    margin: 0.2rem 0;
    overflow-wrap: anywhere;
}

.cloud-ops-identity span:not(.utf-status):not(.utf-status__dot) {
    color: var(--utf-text-muted);
    overflow-wrap: anywhere;
}

.cloud-ops-detail-grid {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.cloud-ops-metadata-summary-grid {
    gap: 1rem;
}

.cloud-ops-metadata-grid {
    align-items: start;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.cloud-ops-metadata-section {
    min-width: 0;
    overflow: hidden;
}

.cloud-ops-metadata-section--wide {
    grid-column: 1 / -1;
}

.cloud-ops-metadata-section__header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.9rem 1rem 0.75rem;
}

.cloud-ops-metadata-section__header h2 {
    color: var(--utf-text);
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

.cloud-ops-metadata-section__header p {
    color: var(--utf-text-muted);
    font-size: 0.83rem;
    line-height: 1.35;
    margin: 0.24rem 0 0;
}

.cloud-ops-metadata-section__footer {
    border-top: 1px solid var(--utf-stroke);
    color: var(--utf-text-subtle);
    font-size: 0.75rem;
    font-style: italic;
    line-height: 1.25;
    padding: 0.55rem 1rem;
    text-align: right;
}

.cloud-ops-metadata-table {
    min-width: 40rem;
}

.cloud-ops-metadata-table--wide {
    min-width: 72rem;
}

.cloud-ops-metadata-table-scroll {
    max-height: min(44dvh, 25rem);
}

.cloud-ops-table-empty {
    color: var(--utf-text-muted);
    padding: 1rem;
    text-align: center;
}

.cloud-ops-fact-wide {
    grid-column: 1 / -1;
}

.cloud-ops-detail-panel {
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
}

.cloud-ops-panel-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    margin: -1rem -1rem 1rem;
    padding: 0.9rem 1rem;
}

.cloud-ops-panel-header h2 {
    color: var(--utf-text);
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

.cloud-ops-panel-header span {
    color: var(--utf-text-subtle);
    font-size: 0.82rem;
}

.cloud-ops-facts {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.cloud-ops-facts--compact {
    grid-template-columns: 1fr;
}

.cloud-ops-facts div {
    min-width: 0;
}

.cloud-ops-facts dt {
    color: var(--utf-text-subtle);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cloud-ops-facts dd {
    color: var(--utf-text);
    line-height: 1.35;
    margin: 0.15rem 0 0;
    overflow-wrap: anywhere;
}

.cloud-ops-json {
    background: #090e14;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    margin: 0;
    max-height: 28rem;
    overflow: auto;
    padding: 0.8rem;
    white-space: pre-wrap;
}

.cloud-ops-muted {
    color: var(--utf-text-muted);
    line-height: 1.45;
    margin: 0;
}

.cloud-ops-stack {
    display: grid;
    gap: 0.8rem;
}

.cloud-ops-actions,
.cloud-ops-inline-form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.cloud-ops-action-state {
    display: grid;
    gap: 0.35rem;
}

.cloud-ops-form {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cloud-ops-form label,
.cloud-ops-field {
    color: var(--utf-text-subtle);
    display: grid;
    font-size: 0.72rem;
    font-weight: 850;
    gap: 0.35rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cloud-ops-field--wide {
    grid-column: 1 / -1;
}

.cloud-ops-control {
    appearance: none;
    background: linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    box-sizing: border-box;
    color: var(--utf-text);
    font: inherit;
    min-height: 38px;
    padding: 0.56rem 0.72rem;
    text-transform: none;
    width: 100%;
}

.cloud-ops-form fluent-text-field,
.cloud-ops-form fluent-number-field,
.cloud-ops-form fluent-text-area,
.cloud-ops-inline-form fluent-text-field,
.cloud-ops-control {
    min-width: 0;
    width: 100%;
}

textarea.cloud-ops-control {
    line-height: 1.45;
    resize: vertical;
}

.cloud-ops-control:focus {
    border-color: var(--utf-gold);
    box-shadow: 0 0 0 1px rgba(186, 160, 90, 0.22);
    outline: 2px solid rgba(186, 160, 90, 0.26);
    outline-offset: 2px;
}

.cloud-ops-check {
    align-items: center;
    color: var(--utf-text-muted);
    display: flex;
    gap: 0.5rem;
    min-width: 0;
    width: fit-content;
    text-transform: none;
}

.cloud-ops-check input {
    accent-color: var(--utf-gold);
}

.cloud-ops-review-backdrop {
    align-items: center;
    background: rgba(0, 0, 0, 0.68);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 1rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 70;
}

.cloud-ops-review-dialog {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-md);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    color: var(--utf-text);
    display: grid;
    gap: 1rem;
    max-height: min(92dvh, 48rem);
    max-width: min(94vw, 46rem);
    overflow: auto;
    padding: 1rem;
    width: 100%;
}

.cloud-ops-review-header {
    display: grid;
    gap: 0.4rem;
}

.cloud-ops-review-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.cloud-ops-review-header p {
    color: var(--utf-text-muted);
    line-height: 1.45;
    margin: 0;
}

.cloud-ops-evidence-grid {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    overflow: hidden;
}

.cloud-ops-evidence-row {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: minmax(8rem, 0.8fr) minmax(6rem, auto) minmax(0, 1.5fr);
    padding: 0.7rem;
}

.cloud-ops-evidence-row + .cloud-ops-evidence-row {
    border-top: 1px solid var(--utf-stroke);
}

.cloud-ops-evidence-row strong {
    color: var(--utf-text);
}

.cloud-ops-evidence-row span:not(.utf-status):not(.utf-status__dot) {
    color: var(--utf-text-muted);
    overflow-wrap: anywhere;
}

.cloud-ops-review-confirmation {
    display: grid;
    gap: 0.8rem;
}

@media (max-width: 1280px) {
    .cloud-ops-status-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cloud-ops-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .cloud-ops-metadata-grid {
        grid-template-columns: 1fr;
    }

    .cloud-ops-metadata-section--wide {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .cloud-ops-status-strip,
    .cloud-ops-overview-grid,
    .cloud-ops-form,
    .cloud-ops-facts {
        grid-template-columns: 1fr;
    }

    .cloud-ops-overview-grid {
        padding: 0.85rem;
    }

    .cloud-ops-overview-card {
        min-height: auto;
    }

    .cloud-ops-identity,
    .cloud-ops-panel-header,
    .cloud-ops-actions,
    .cloud-ops-inline-form {
        align-items: stretch;
        flex-direction: column;
    }

    .cloud-ops-evidence-row {
        grid-template-columns: 1fr;
    }

    .cloud-ops-table {
        min-width: 56rem;
    }

    .cloud-ops-metadata-table {
        min-width: 38rem;
    }

    .cloud-ops-metadata-table--wide {
        min-width: 58rem;
    }

    .cloud-ops-metadata-section__header {
        flex-direction: column;
    }
}

.utf-command-selection {
    align-items: center;
    background: linear-gradient(90deg, rgba(186, 160, 90, 0.12), rgba(186, 160, 90, 0.03));
    border-top: 1px solid var(--utf-gold);
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.8fr) auto;
    padding: 0.95rem 1rem;
}

.utf-command-selection__label,
.utf-command-selection dt {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.utf-command-selection strong,
.utf-command-selection dd {
    color: var(--utf-text);
}

.utf-command-selection__facts {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    margin: 0;
}

.utf-command-selection__facts div {
    border-left: 1px solid var(--utf-stroke);
    min-width: 0;
    padding-left: 0.85rem;
}

.utf-command-selection dt,
.utf-command-selection dd {
    margin: 0;
}

.utf-command-selection dd {
    font-size: 0.9rem;
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
}

.utf-command-selection__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

.utf-data-table-shell fluent-data-grid {
    width: 100%;
}

.utf-table-meta {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.95rem 1rem;
}

.utf-table-meta strong {
    color: var(--utf-text);
    font-size: 1.02rem;
}

.utf-table-meta > span:last-child {
    color: var(--utf-text-muted);
    flex: 1 1 14rem;
    text-align: right;
}

.utf-form-panel {
    overflow: hidden;
    padding: 1rem;
}

.utf-validation-summary {
    color: var(--utf-danger);
    margin-top: 0.75rem;
}

.utf-command-overview {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.utf-attention-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.utf-attention-card,
.utf-empty-state {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    color: var(--utf-text);
    min-width: 0;
    padding: 1rem;
}

.utf-attention-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-decoration: none;
}

.utf-attention-card:hover {
    border-color: var(--utf-gold);
}

.utf-attention-card strong,
.utf-empty-state h2 {
    color: var(--utf-text);
    font-size: 1.05rem;
    margin: 0;
}

.utf-attention-card span:not(.utf-status):not(.utf-status__dot),
.utf-empty-state p {
    color: var(--utf-text-muted);
    line-height: 1.45;
    margin: 0;
}

.utf-command-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.utf-command-attention-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.utf-attention-card--metric b {
    color: var(--utf-gold-strong);
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1.1;
}

.utf-command-overview-split {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.utf-command-activity {
    padding: 1rem;
}

.utf-command-activity ol {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utf-command-activity li {
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.75rem;
}

.utf-command-activity li:first-child {
    border-top: 0;
    padding-top: 0;
}

.utf-command-activity li strong {
    color: var(--utf-text);
    font-size: 0.95rem;
}

.utf-command-activity li span {
    color: var(--utf-text-subtle);
    font-size: 0.84rem;
}

.members-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.members-attention {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.members-roster-workspace {
    grid-template-columns: minmax(0, 1fr);
}

.members-list-panel {
    overflow: hidden;
}

.members-list-panel.utf-command-ledger {
    padding: 0;
}

.members-table {
    min-width: 960px;
}

.members-table-member {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    min-width: 0;
}

.members-table-avatar {
    align-items: center;
    background: linear-gradient(135deg, rgba(186, 160, 90, 0.22), rgba(71, 109, 102, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--utf-text);
    display: inline-flex;
    flex: 0 0 2.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    height: 2.5rem;
    justify-content: center;
    line-height: 1;
    object-fit: cover;
    overflow: hidden;
    text-transform: uppercase;
    width: 2.5rem;
}

.members-table-avatar--fallback {
    box-shadow: inset 0 0 0 1px rgba(186, 160, 90, 0.24);
}

.members-table-member__identity {
    min-width: 0;
}

.members-table-row {
    cursor: default;
}

.members-panel__header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.members-panel__header h2 {
    color: var(--utf-text);
    font-size: 1.08rem;
    line-height: 1.2;
    margin: 0;
}

.members-empty {
    color: var(--utf-text-muted);
    padding: 1rem;
}

.members-actions-cell {
    white-space: nowrap;
}

.member-management-page {
    color: var(--utf-text);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.member-management-identity {
    align-items: stretch;
    background:
        radial-gradient(circle at top left, rgba(186, 160, 90, 0.15), transparent 34rem),
        linear-gradient(135deg, rgba(20, 30, 36, 0.96), rgba(8, 12, 16, 0.98));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto minmax(14rem, 0.65fr) minmax(0, 2fr);
    min-width: 0;
    padding: 1rem;
}

.member-management-identity__badge {
    align-items: center;
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(226, 200, 119, 0.95), rgba(143, 111, 45, 0.98)),
        var(--utf-gold);
    border: 1px solid rgba(255, 236, 165, 0.58);
    border-radius: var(--utf-radius-sm);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    color: #11181d;
    display: flex;
    font-size: 1.3rem;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0;
    width: 4.5rem;
}

.member-management-identity__badge--image {
    background-color: rgba(12, 18, 24, 0.98);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: transparent;
    overflow: hidden;
}

.member-management-identity__main {
    align-content: center;
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.member-management-identity__main h2 {
    color: var(--utf-text);
    font-size: 1.35rem;
    line-height: 1.15;
    margin: 0;
    overflow-wrap: anywhere;
}

.member-management-identity__main > span:last-child {
    color: var(--utf-text-muted);
    font-size: 0.82rem;
    overflow-wrap: anywhere;
}

.member-management-identity__facts {
    border-left: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    min-width: 0;
}

.member-management-identity__facts div {
    border-right: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.2rem 1rem;
}

.member-management-identity__facts div:last-child {
    border-right: 0;
}

.member-management-identity__facts dt {
    color: var(--utf-text-subtle);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.member-management-identity__facts dd {
    display: grid;
    gap: 0.28rem;
    margin: 0;
    min-width: 0;
}

.member-management-identity__facts strong {
    color: var(--utf-text);
    font-size: 0.92rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.member-management-identity__facts dd > span:not(.utf-status) {
    color: var(--utf-text-muted);
    font-size: 0.82rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.member-management-grid,
.member-management-authority-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-management-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
}

.member-management-panel--form,
.member-management-panel--authority {
    background:
        linear-gradient(180deg, rgba(18, 27, 32, 0.93), rgba(9, 13, 17, 0.94)),
        var(--utf-surface);
    border-color: rgba(139, 151, 160, 0.24);
}

.member-management-panel__header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.member-management-panel__header h2,
.member-management-collection h3 {
    color: var(--utf-text);
    font-size: 1.02rem;
    line-height: 1.2;
    margin: 0.2rem 0 0;
}

.member-management-meta {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0.55rem 1rem;
    grid-template-columns: minmax(7rem, auto) minmax(0, 1fr);
    margin: 0;
    padding: 0.85rem;
}

.member-management-meta dt {
    color: var(--utf-text-subtle);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.member-management-meta dd {
    color: var(--utf-text);
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.member-management-form {
    display: grid;
    gap: 0.9rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-management-field {
    color: var(--utf-text-subtle);
    display: grid;
    font-size: 0.74rem;
    font-weight: 850;
    gap: 0.38rem;
    min-width: 0;
    text-transform: uppercase;
}

.member-management-field--wide,
.member-management-actions,
.member-management-toggle-grid {
    grid-column: 1 / -1;
}

.member-management-control {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 0 0 1px rgba(255, 255, 255, 0.018);
    box-sizing: border-box;
    color: var(--utf-text);
    font: inherit;
    font-size: 0.93rem;
    font-weight: 560;
    min-height: 2.5rem;
    min-width: 0;
    padding: 0.6rem 0.78rem;
    width: 100%;
}

.member-management-control:hover {
    border-color: rgba(210, 220, 225, 0.34);
}

.member-management-control:focus {
    border-color: var(--utf-gold);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(186, 160, 90, 0.2);
    outline: 2px solid rgba(186, 160, 90, 0.24);
    outline-offset: 2px;
}

.member-management-control:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.member-management-control::placeholder {
    color: rgba(212, 220, 224, 0.46);
}

textarea.member-management-control {
    line-height: 1.45;
    resize: vertical;
}

.member-management-select {
    display: block;
    position: relative;
}

.member-management-select::after {
    border-bottom: 2px solid var(--utf-gold);
    border-right: 2px solid var(--utf-gold);
    content: "";
    height: 0.45rem;
    pointer-events: none;
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 0.45rem;
}

.member-management-select .member-management-control {
    padding-right: 2.2rem;
}

.member-management-toggle-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-management-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    cursor: pointer;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.75rem;
}

.member-management-toggle input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.member-management-toggle__switch {
    background: rgba(212, 220, 224, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    height: 1.5rem;
    position: relative;
    transition: background 160ms ease, border-color 160ms ease;
    width: 2.75rem;
}

.member-management-toggle__switch::after {
    background: var(--utf-text);
    border-radius: 999px;
    content: "";
    height: 1.125rem;
    left: 0.125rem;
    position: absolute;
    top: 0.125rem;
    transition: transform 160ms ease, background 160ms ease;
    width: 1.125rem;
}

.member-management-toggle input:checked + .member-management-toggle__switch {
    background: linear-gradient(135deg, var(--utf-gold), var(--utf-gold-strong));
    border-color: rgba(238, 214, 142, 0.7);
}

.member-management-toggle input:checked + .member-management-toggle__switch::after {
    background: #10151a;
    transform: translateX(1.25rem);
}

.member-management-toggle:has(input:focus-visible) {
    outline: 2px solid rgba(186, 160, 90, 0.24);
    outline-offset: 2px;
}

.member-management-toggle:has(input:disabled) {
    cursor: not-allowed;
    opacity: 0.58;
}

.member-management-toggle strong {
    color: var(--utf-text);
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
}

.member-management-toggle small {
    color: var(--utf-text-muted);
    display: block;
    font-size: 0.8rem;
    line-height: 1.25;
    margin-top: 0.15rem;
}

.member-management-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.member-management-toolbar {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.member-management-toolbar .utf-command-search-field {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
}

.member-management-collections {
    display: grid;
    gap: 0.85rem;
}

.member-management-collection {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    min-width: 0;
    overflow: hidden;
}

.member-management-collection h3 {
    border-bottom: 1px solid var(--utf-stroke);
    padding: 0.78rem 0.9rem;
}

.member-management-table {
    min-width: 640px;
}

.member-management-table--compact {
    min-width: 520px;
}

.member-management-table td:last-child,
.member-management-table th:last-child {
    text-align: right;
    white-space: nowrap;
}

.member-management-row-button {
    height: 2.25rem;
    min-height: 2.25rem;
    min-width: 5.75rem;
    padding-inline: 0.75rem;
}

.member-management-row-button .utf-button__icon {
    margin-inline-start: -0.1rem;
}

.member-management-empty {
    color: var(--utf-text-muted);
    padding: 1rem;
}

.utf-command-form :is(input, select, textarea):disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

@media (max-width: 1100px) {
    .member-management-grid,
    .member-management-authority-grid {
        grid-template-columns: 1fr;
    }

    .member-management-identity {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .member-management-identity__facts {
        border-left: 0;
        border-top: 1px solid var(--utf-stroke);
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 1rem;
    }
}

@media (max-width: 720px) {
    .member-management-identity,
    .member-management-form,
    .member-management-toggle-grid {
        grid-template-columns: 1fr;
    }

    .member-management-identity__badge {
        width: 3.5rem;
    }

    .member-management-identity__facts {
        grid-template-columns: 1fr;
    }

    .member-management-identity__facts div {
        border-bottom: 1px solid var(--utf-stroke);
        border-right: 0;
        padding: 0.75rem 0;
    }

    .member-management-identity__facts div:last-child {
        border-bottom: 0;
    }

    .member-management-panel__header {
        flex-direction: column;
    }
}

.authority-page {
    color: var(--utf-text);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.authority-detail-panel__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.authority-attention {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.authority-master-detail {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(24rem, 1fr) minmax(21rem, 0.72fr);
}

.authority-list-panel,
.authority-detail-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
}

.authority-list-panel.utf-command-ledger {
    gap: 0;
    padding: 0;
}

.authority-table {
    min-width: 900px;
}

.authority-table-row {
    cursor: pointer;
}

.authority-detail-panel {
    position: sticky;
    top: 88px;
}

.authority-panel__header,
.authority-detail-panel__header {
    align-items: flex-start;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.authority-panel__header h2,
.authority-detail-panel__header h2,
.authority-stack h3 {
    color: var(--utf-text);
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0.2rem 0 0;
}

.authority-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.authority-row {
    align-items: center;
    background: transparent;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 0.65rem;
    grid-template-columns: minmax(7rem, max-content) minmax(0, 1.2fr) minmax(0, 1fr) minmax(9rem, 0.8fr);
    min-height: 54px;
    padding: 0.65rem 0.75rem;
    text-align: left;
    width: 100%;
}

.authority-row:hover,
.authority-row:focus-visible,
.authority-row--selected {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--utf-gold);
    outline: none;
}

.authority-row--selected {
    box-shadow: inset 3px 0 0 var(--utf-gold);
}

.authority-row strong,
.authority-row span:not(.utf-status):not(.utf-status__dot),
.authority-row small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.authority-row strong {
    color: var(--utf-text);
    font-size: 0.95rem;
}

.authority-row span:not(.utf-status):not(.utf-status__dot),
.authority-row small,
.authority-empty,
.authority-stack p {
    color: var(--utf-text-muted);
}

.authority-empty {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    line-height: 1.45;
    padding: 1rem;
}

.authority-meta {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(8rem, 0.56fr) minmax(0, 1fr);
    margin: 0;
}

.authority-meta dt,
.authority-meta dd {
    border-bottom: 1px solid var(--utf-stroke);
    margin: 0;
    min-width: 0;
    padding: 0.7rem 0;
}

.authority-meta dt {
    color: var(--utf-text-subtle);
    font-size: 0.78rem;
    font-weight: 800;
    padding-right: 1rem;
    text-transform: uppercase;
}

.authority-meta dd {
    color: var(--utf-text);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.authority-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.authority-stack div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.authority-stack div span {
    background: rgba(174, 183, 194, 0.14);
    border: 1px solid var(--utf-stroke);
    border-radius: 999px;
    color: var(--utf-text-muted);
    font-size: 0.78rem;
    font-weight: 750;
    min-height: 26px;
    padding: 0.3rem 0.65rem;
}

.authority-role-editor,
.authority-role-members {
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1rem;
}

.authority-role-members__header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.authority-role-members__header h3 {
    color: var(--utf-text);
    font-size: 1rem;
    line-height: 1.2;
    margin: 0.18rem 0 0;
}

.authority-role-form {
    grid-template-columns: minmax(0, 1fr);
}

.authority-role-member-collections {
    gap: 0.75rem;
}

.authority-role-member-table {
    min-width: 560px;
}

.authority-member-actions-cell,
.authority-inline-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.authority-member-actions-cell {
    min-width: 11rem;
}

.authority-inline-actions {
    margin-top: 0.75rem;
}

.authority-detail-panel__actions {
    border-top: 1px solid var(--utf-stroke);
    justify-content: start;
    padding-top: 1rem;
}

.utf-status {
    align-items: center;
    border-radius: var(--utf-radius-sm);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 650;
    gap: 0.45rem;
    min-height: 28px;
    padding: 0 0.7rem;
    width: fit-content;
}

.utf-status__dot {
    border-radius: 999px;
    height: 0.5rem;
    width: 0.5rem;
}

.utf-status--neutral {
    background: rgba(174, 183, 194, 0.14);
    color: var(--utf-text-muted);
}

.utf-status--neutral .utf-status__dot {
    background: var(--utf-text-muted);
}

.utf-status--info {
    background: var(--utf-info-bg);
    color: var(--utf-info);
}

.utf-status--info .utf-status__dot {
    background: var(--utf-info);
}

.utf-status--success {
    background: var(--utf-success-bg);
    color: var(--utf-success);
}

.utf-status--success .utf-status__dot {
    background: var(--utf-success);
}

.utf-status--warning {
    background: var(--utf-warning-bg);
    color: var(--utf-warning);
}

.utf-status--warning .utf-status__dot {
    background: var(--utf-warning);
}

.utf-status--danger {
    background: var(--utf-danger-bg);
    color: var(--utf-danger);
}

.utf-status--danger .utf-status__dot {
    background: var(--utf-danger);
}

.footer-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25em;
    text-decoration: none;
    margin: 0 0 0 1em;
}

@media (max-width: 1100px) {
    .utf-command-shell {
        grid-template-columns: 1fr;
    }

    .utf-command-nav {
        bottom: 0;
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.4);
        display: none;
        left: 0;
        max-width: min(84vw, 320px);
        position: fixed;
        top: 0;
        width: 320px;
        z-index: 40;
    }

    .utf-command-nav.open {
        display: block;
    }

    .utf-command-scrim {
        background: rgba(0, 0, 0, 0.58);
        border: 0;
        bottom: 0;
        display: block;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 30;
    }

    .utf-command-drawer-button {
        display: flex;
        flex: 0 0 auto;
    }
}

@media (max-width: 860px) {
    .utf-community-nav {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-inline: 1rem;
    }

    .utf-community-links,
    .utf-command-entry {
        display: none;
    }

    .utf-mobile-menu-button {
        display: flex;
    }

    .utf-community-mobile-menu {
        display: block;
    }

    .utf-community-brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .utf-community-footer,
    .utf-page-header {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-command-topbar {
        min-height: 64px;
        padding-inline: 0.8rem;
    }

    .utf-command-main {
        grid-template-rows: auto minmax(0, 1fr);
    }

    .utf-command-topbar__actions {
        flex: 1 1 100%;
    }

    .utf-command-content {
        padding: 1rem;
    }
}

@media (max-width: 620px) {
    .utf-community-actions fluent-profile-menu,
    .utf-steam-signin span,
    .utf-command-topbar__actions fluent-profile-menu {
        display: none;
    }

    .utf-community-nav {
        gap: 0.7rem;
    }

    .utf-command-topbar {
        align-items: flex-start;
        flex-wrap: wrap;
        padding-block: 0.75rem;
    }

    .utf-command-topbar__actions {
        justify-content: start;
        margin-left: 0;
    }
}

.utf-command-content .servers-page,
.utf-command-content .cloud-page,
.utf-command-content .mod-pack-detail {
    color: var(--utf-text);
    padding: 0;
}

.utf-command-content .detail-section,
.utf-command-content .cloud-data-panel,
.utf-command-content .detail-panel,
.utf-command-content .metadata-section,
.utf-command-content .empty-state,
.utf-command-content .risk-note,
.utf-command-content .safe-json,
.utf-command-content .preflight-approval-form,
.utf-command-content .preflight-empty,
.utf-command-content .preflight-detail-grid,
.utf-command-content .policy-approval-form,
.utf-command-content .guided-step,
.utf-command-content .guided-summary,
.utf-command-content .guided-empty,
.utf-command-content .mod-pack-detail__field,
.utf-command-content .mod-pack-detail__empty-preview {
    background: var(--utf-surface);
    border-color: var(--utf-stroke);
    color: var(--utf-text);
}

.utf-command-content .configuration-rail,
.utf-command-content .cloud-table th,
.utf-command-content .guided-step-active,
.utf-command-content .attention-row,
.utf-command-content .mod-pack-detail__preview iframe {
    background: var(--utf-surface-2);
}

.utf-command-content .guided-step-active,
.utf-command-content .configuration-kind.active {
    border-color: var(--utf-gold);
}

.utf-command-content .configuration-kind.active,
.utf-command-content .cloud-table tbody tr:hover {
    background: var(--utf-gold-muted);
    color: var(--utf-text);
}

.utf-command-content .configuration-kind {
    color: var(--utf-text-muted);
}

.utf-command-content .configuration-kind:hover,
.utf-command-content .configuration-kind:focus-visible {
    background: var(--utf-surface);
    border-color: var(--utf-stroke-strong);
    color: var(--utf-text);
}

.utf-command-content .cloud-table th,
.utf-command-content .cloud-table td,
.utf-command-content .data-table th,
.utf-command-content .data-table td,
.utf-command-content .detail-list li,
.utf-command-content .dry-run-review-section,
.utf-command-content .cloud-result-subsection,
.utf-command-content .policy-approval-section,
.utf-command-content .preflight-row,
.utf-command-content .provisioning-evidence-row,
.utf-command-content .runtime-evidence-row,
.utf-command-content .teardown-evidence-row,
.utf-command-content .mod-pack-detail__summary {
    border-color: var(--utf-stroke);
}

.utf-command-content input,
.utf-command-content select,
.utf-command-content textarea,
.utf-command-content .config-form input,
.utf-command-content .config-form select,
.utf-command-content .config-form textarea,
.utf-command-content .guided-form-grid input,
.utf-command-content .guided-form-grid select,
.utf-command-content .guided-form-grid textarea,
.utf-command-content .policy-approval-form input,
.utf-command-content .policy-approval-form textarea,
.utf-command-content .form-grid input,
.utf-command-content .form-grid select {
    background: var(--neutral-fill-input-rest);
    border-color: var(--neutral-stroke-input-rest);
    color: var(--utf-text);
}

.utf-command-content .utf-command-input,
.utf-command-content .utf-command-search {
    background:
        linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 0 0 1px rgba(255, 255, 255, 0.018);
    color: var(--utf-text);
    min-height: 38px;
}

.utf-command-content .status-badge {
    align-items: center;
    border-radius: var(--utf-radius-sm);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 650;
    gap: 0.45rem;
    min-height: 28px;
    padding: 0 0.7rem;
}

.utf-command-content .status-neutral {
    background: rgba(174, 183, 194, 0.14);
    border-color: rgba(174, 183, 194, 0.28);
    color: var(--utf-text-muted);
}

.utf-command-content .status-info {
    background: var(--utf-info-bg);
    border-color: rgba(96, 165, 250, 0.34);
    color: var(--utf-info);
}

.utf-command-content .status-warning {
    background: var(--utf-warning-bg);
    border-color: rgba(245, 158, 11, 0.34);
    color: var(--utf-warning);
}

.utf-command-content .status-success {
    background: var(--utf-success-bg);
    border-color: rgba(34, 197, 94, 0.34);
    color: var(--utf-success);
}

.utf-command-content .status-danger {
    background: var(--utf-danger-bg);
    border-color: rgba(239, 68, 68, 0.34);
    color: var(--utf-danger);
}

.utf-command-content .attention-row {
    background: var(--utf-danger-bg);
}

.utf-command-content .preflight-blockers,
.utf-command-content .guided-validation-list,
.utf-command-content .field-validation,
.utf-command-content .failure-text {
    color: var(--utf-danger);
}

.utf-landing {
    background: var(--utf-bg);
}

.utf-landing-hero {
    align-items: end;
    background-image:
        linear-gradient(90deg, rgba(7, 11, 15, 0.92) 0%, rgba(7, 11, 15, 0.68) 42%, rgba(7, 11, 15, 0.32) 100%),
        linear-gradient(0deg, rgba(7, 11, 15, 0.88) 0%, rgba(7, 11, 15, 0.08) 42%, rgba(7, 11, 15, 0.24) 100%),
        var(--utf-hero-image, none);
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: min(620px, calc(100dvh - 112px));
    padding: 4rem max(1.5rem, calc((100% - 1180px) / 2));
}

.utf-landing-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 760px;
}

.utf-kicker {
    color: var(--utf-gold-strong);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.utf-landing-hero h1,
.utf-events-header h1 {
    color: var(--utf-text);
    font-size: 4.6rem;
    font-weight: 850;
    line-height: 0.98;
    margin: 0;
    max-width: 12ch;
}

.utf-landing-hero p,
.utf-events-header p {
    color: var(--utf-text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

.utf-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.utf-hero-meta span {
    align-items: center;
    background: var(--utf-surface-glass);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    display: inline-flex;
    font-size: 0.9rem;
    gap: 0.45rem;
    min-height: 36px;
    padding: 0 0.75rem;
}

.utf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.utf-landing-band,
.utf-who-we-are,
.utf-events-page {
    margin: 0 auto;
    max-width: 1180px;
    padding: 3rem 1.5rem;
}

.utf-section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.utf-section-heading h2 {
    color: var(--utf-text);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.utf-operation-strip,
.utf-events-grid,
.utf-story-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.utf-operation-card,
.utf-event-card,
.utf-story-grid section,
.utf-state-panel {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
}

.utf-operation-card {
    display: grid;
    grid-template-rows: 12rem minmax(0, 1fr);
    min-height: 29rem;
    overflow: hidden;
    text-decoration: none;
}

.utf-operation-card__image,
.utf-event-card__image {
    background-image:
        linear-gradient(0deg, rgba(7, 11, 15, 0.72), rgba(7, 11, 15, 0.04)),
        var(--utf-event-image, none);
    background-position: center;
    background-size: cover;
}

.utf-operation-card__body,
.utf-event-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-width: 0;
    padding: 1rem;
}

.utf-operation-card h3,
.utf-event-card h2,
.utf-story-grid h3 {
    color: var(--utf-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.utf-operation-card p,
.utf-story-grid p,
.utf-story-grid li {
    color: var(--utf-text-muted);
    line-height: 1.65;
    margin: 0;
}

.utf-operation-card dl,
.utf-event-card__meta {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.utf-event-card__meta {
    grid-template-columns: 1fr;
}

.utf-operation-card dl div,
.utf-event-card__meta div {
    min-width: 0;
}

.utf-operation-card dt,
.utf-event-card__meta dt {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.utf-operation-card dd,
.utf-event-card__meta dd {
    color: var(--utf-text);
    margin: 0.15rem 0 0;
    overflow-wrap: anywhere;
}

.utf-slot-meter {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 0.45rem;
    overflow: hidden;
    width: 100%;
}

.utf-slot-meter span {
    background: linear-gradient(90deg, var(--utf-gold), var(--utf-success));
    display: block;
    height: 100%;
    min-width: 0.25rem;
}

.utf-status {
    align-self: start;
    background: rgba(174, 183, 194, 0.14);
    border: 1px solid rgba(174, 183, 194, 0.28);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 26px;
    padding: 0.25rem 0.65rem;
    text-transform: uppercase;
}

.utf-status--success {
    background: var(--utf-success-bg);
    border-color: rgba(34, 197, 94, 0.34);
    color: var(--utf-success);
}

.utf-status--warning {
    background: var(--utf-warning-bg);
    border-color: rgba(245, 158, 11, 0.34);
    color: var(--utf-warning);
}

.utf-status--danger {
    background: var(--utf-danger-bg);
    border-color: rgba(239, 68, 68, 0.34);
    color: var(--utf-danger);
}

.utf-state-panel {
    color: var(--utf-text-muted);
    padding: 1.2rem;
}

.utf-state-panel--warning {
    background: var(--utf-warning-bg);
    border-color: rgba(245, 158, 11, 0.34);
    color: var(--utf-text);
}

.utf-story-grid section {
    padding: 1.25rem;
}

.utf-story-grid ul {
    display: grid;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utf-story-grid li {
    border-left: 2px solid var(--utf-gold);
    padding-left: 0.8rem;
}

.utf-preview-card {
    align-content: start;
    display: grid;
    gap: 0.85rem;
}

.utf-preview-card .utf-link-action {
    justify-self: start;
}

.utf-events-page {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.utf-events-header {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.utf-events-header h1 {
    font-size: 3.4rem;
    max-width: none;
}

.utf-filter-bar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.utf-filter-chip {
    align-items: center;
    background: transparent;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 750;
    gap: 0.55rem;
    min-height: 34px;
    padding: 0 0.9rem;
}

.utf-command-filter__count {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid var(--utf-stroke);
    border-radius: 3px;
    color: var(--utf-text);
    font-size: 0.78rem;
    line-height: 1;
    min-width: 1.55rem;
    padding: 0.25rem 0.35rem;
    text-align: center;
}

.utf-filter-chip:hover,
.utf-filter-chip.active {
    background: var(--utf-gold-muted);
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-filter-chip.active .utf-command-filter__count {
    background: rgba(186, 160, 90, 0.28);
    border-color: rgba(186, 160, 90, 0.42);
    color: var(--utf-gold-strong);
}

.utf-filter-chip:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.utf-event-card {
    display: grid;
    grid-template-rows: 13rem minmax(0, 1fr);
    min-height: 36rem;
    overflow: hidden;
}

.utf-event-card__image {
    align-items: start;
    display: flex;
    padding: 0.9rem;
}

.utf-event-card__date {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    padding-bottom: 0.75rem;
}

.utf-event-card__date span {
    color: var(--utf-text-muted);
}

.utf-event-card__date strong {
    color: var(--utf-gold-strong);
    font-size: 1.1rem;
}

.utf-event-card__attendance {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
}

.utf-event-card__attendance span {
    color: var(--utf-text);
    font-weight: 750;
}

.utf-event-card__attendance small {
    color: var(--utf-text-subtle);
    display: block;
    margin-top: 0.15rem;
}

.utf-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.utf-md-icon {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E");
    background: currentColor;
    color: var(--utf-gold-strong);
    display: inline-block;
    flex: 0 0 auto;
    height: 1.15em;
    -webkit-mask: var(--utf-md-icon-mask) center / contain no-repeat;
    mask: var(--utf-md-icon-mask) center / contain no-repeat;
    vertical-align: -0.16em;
    width: 1.15em;
}

.utf-md-icon--document {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l5 5v13H7z'/%3E%3Cpath d='M14 3v5h5M10 13h6M10 17h6'/%3E%3C/svg%3E");
}

.utf-md-icon--extract {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h12M12 6l6 6-6 6M5 5h5M5 19h5'/%3E%3C/svg%3E");
}

.utf-md-icon--host {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3Cpath d='M18 8h3M3 8h3'/%3E%3C/svg%3E");
}

.utf-md-icon--intel {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v6M12 7h.01'/%3E%3C/svg%3E");
}

.utf-md-icon--map {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18 9 6l4 8 3-5 5 9H3z'/%3E%3Cpath d='M9 18h12'/%3E%3C/svg%3E");
}

.utf-md-icon--medical {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3C/svg%3E");
}

.utf-md-icon--modpack {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 8 4.5v9L12 21l-8-4.5v-9L12 3z'/%3E%3Cpath d='m4 7.5 8 4.5 8-4.5M12 12v9'/%3E%3C/svg%3E");
}

.utf-md-icon--rally {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 21V4M6 4h11l-2 4 2 4H6'/%3E%3C/svg%3E");
}

.utf-md-icon--radio {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 18a8 8 0 0 1 0-12M10 15a4 4 0 0 1 0-6M14 12h.01M18 9a4 4 0 0 1 0 6M21 6a8 8 0 0 1 0 12'/%3E%3C/svg%3E");
}

.utf-md-icon--slot {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 4.5 2.7 8.5 7 10 4.3-1.5 7-5.5 7-10V6l-7-3z'/%3E%3Cpath d='M9 12h6M12 9v6'/%3E%3C/svg%3E");
}

.utf-md-icon--stealth {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s4-6 10-6 10 6 10 6-4 6-10 6S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.utf-md-icon--support {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20M5 7h14M5 17h14M7 4l10 16M17 4 7 20'/%3E%3C/svg%3E");
}

.utf-md-icon--time {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.utf-md-icon--warning {
    --utf-md-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 2 21h20L12 3z'/%3E%3Cpath d='M12 9v5M12 18h.01'/%3E%3C/svg%3E");
}

.utf-event-detail {
    background:
        radial-gradient(circle at 8% 6%, rgba(186, 160, 90, 0.08), transparent 22rem),
        linear-gradient(180deg, #05080c 0%, #0a0f14 52%, #05080c 100%);
    color: var(--utf-text);
    min-height: 100%;
}

.utf-event-loading,
.utf-event-detail > .utf-state-panel {
    margin: 3rem auto;
    max-width: 1180px;
    padding: 1.5rem;
}

.utf-event-detail > .utf-state-panel p {
    margin: 0.5rem 0 1rem;
}

.utf-mission-banner {
    align-items: end;
    --utf-mission-banner-background:
        linear-gradient(90deg, rgba(3, 6, 10, 0.96) 0%, rgba(3, 6, 10, 0.66) 42%, rgba(3, 6, 10, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 8, 12, 0.22) 0%, rgba(5, 8, 12, 0.12) 42%, rgba(5, 8, 12, 0.95) 100%),
        var(--utf-event-image, none);
    background: #05080c;
    display: flex;
    isolation: isolate;
    min-height: 390px;
    overflow: hidden;
    padding: 1.25rem max(2rem, calc((100% - 1570px) / 2)) 2.25rem;
    position: relative;
}

.utf-mission-banner::before {
    background-image: var(--utf-mission-banner-background);
    background-position: center 42%;
    background-size: cover;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.utf-mission-banner > * {
    position: relative;
    z-index: 1;
}

.utf-mission-banner__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.utf-event-back-link {
    align-items: center;
    color: var(--utf-text-muted);
    display: inline-flex;
    font-size: 0.86rem;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
    text-decoration: none;
    width: fit-content;
}

.utf-event-back-link:hover {
    color: var(--utf-gold-strong);
}

.utf-operation-tag {
    align-items: center;
    background: linear-gradient(180deg, rgba(212, 173, 84, 0.95), rgba(166, 130, 55, 0.92));
    border: 1px solid rgba(255, 224, 141, 0.55);
    border-radius: var(--utf-radius-sm);
    color: #101014;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0;
    min-height: 26px;
    padding: 0 0.55rem;
    text-transform: uppercase;
    width: fit-content;
}

.utf-mission-banner h1 {
    color: var(--utf-text);
    font-size: clamp(3rem, 4.6vw, 4.4rem);
    font-weight: 900;
    line-height: 0.96;
    margin: 0;
    max-width: 24ch;
    text-transform: uppercase;
}

.utf-mission-meta {
    background: linear-gradient(180deg, rgba(16, 22, 29, 0.92), rgba(9, 13, 18, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--utf-radius-sm);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0.2rem;
    max-width: 1060px;
    overflow: hidden;
}

.utf-mission-meta__item {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--utf-text);
    display: grid;
    gap: 0.85rem;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 76px;
    padding: 0.85rem 1rem;
}

.utf-mission-meta__item:last-child {
    border-right: 0;
}

.utf-mission-meta__item fluent-icon {
    color: var(--utf-text-muted);
}

.utf-mission-meta__item span,
.utf-mission-meta__item small,
.utf-package-list dt {
    color: var(--utf-text-subtle);
    display: block;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.utf-mission-meta__item strong,
.utf-package-list dd {
    color: var(--utf-text);
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 0.18rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.utf-event-detail__grid {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) 350px;
    margin: -35px auto 0;
    max-width: 1570px;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.utf-event-detail__main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.utf-briefing-panel,
.utf-roster-panel,
.utf-roster-group,
.utf-side-card {
    background: linear-gradient(180deg, rgba(16, 22, 29, 0.92), rgba(8, 12, 17, 0.94));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
}

.utf-briefing-panel,
.utf-roster-panel {
    overflow: hidden;
}

.utf-panel-title,
.utf-side-card__header {
    align-items: center;
    display: flex;
    gap: 0.72rem;
}

.utf-panel-title h2,
.utf-side-card__header h2,
.utf-roster-group h3 {
    color: var(--utf-text);
    font-size: 1.02rem;
    font-weight: 850;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.utf-panel-title__icon {
    align-items: center;
    color: var(--utf-gold-strong);
    display: inline-flex;
    font-size: 1.2rem;
    height: 1.4rem;
    justify-content: center;
    width: 1.4rem;
}

.utf-briefing-panel .utf-panel-title,
.utf-roster-panel__header {
    border-bottom: 1px solid var(--utf-stroke);
    padding: 0.95rem 1.25rem;
}

.utf-briefing-objectives {
    display: grid;
    gap: 0.72rem;
    list-style: none;
    margin: 0;
    padding: 1.05rem 1.25rem 1.15rem;
}

.utf-briefing-objectives li {
    align-items: flex-start;
    color: var(--utf-text-muted);
    display: grid;
    gap: 0.72rem;
    grid-template-columns: auto minmax(0, 1fr);
    line-height: 1.45;
}

.utf-briefing-objectives .utf-md-icon {
    color: var(--utf-text-muted);
    font-size: 1.08rem;
    margin-top: 0.08rem;
}

.utf-briefing-notes {
    border-top: 1px solid var(--utf-stroke);
    padding: 1.1rem 1.25rem 1.25rem;
}

.utf-briefing-notes .utf-section-heading {
    margin-bottom: 0.8rem;
}

.utf-briefing-notes .utf-section-heading h3 {
    color: var(--utf-text);
    font-size: 1.06rem;
    line-height: 1.25;
    margin: 0.12rem 0 0;
}

.utf-briefing-panel fluent-markdown,
.utf-briefing-panel p,
.utf-briefing-panel li {
    color: var(--utf-text-muted);
    line-height: 1.65;
}

.utf-briefing-panel fluent-markdown :is(h1, h2, h3, h4) {
    color: var(--utf-text);
    margin: 1rem 0 0.45rem;
}

.utf-briefing-panel fluent-markdown :is(p, ul, ol, blockquote) {
    margin: 0.7rem 0;
}

.utf-briefing-panel fluent-markdown .utf-md-icon {
    margin-right: 0.35rem;
}

.utf-muted {
    color: var(--utf-text-muted);
    line-height: 1.6;
    margin: 0;
}

.utf-attendance-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: -340px;
    position: sticky;
    top: 92px;
}

.utf-side-card {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.utf-side-card__header {
    color: var(--utf-gold-strong);
}

.utf-side-card__header h2 {
    color: var(--utf-gold-strong);
    font-size: 0.92rem;
}

.utf-attendance-progress small {
    color: var(--utf-text-subtle);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.utf-attendance-progress {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.utf-attendance-progress span {
    color: var(--utf-text);
    display: block;
    font-weight: 750;
}

.utf-attendance-actions {
    display: grid;
    gap: 0.5rem;
}

.utf-attendance-choice {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    display: grid;
    font: inherit;
    gap: 0.65rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 44px;
    padding: 0 0.85rem;
    text-align: left;
}

.utf-attendance-choice:not(:disabled) {
    cursor: pointer;
}

.utf-attendance-choice:disabled {
    opacity: 0.7;
}

.utf-attendance-choice__mark {
    border: 2px solid currentColor;
    border-radius: 999px;
    height: 0.82rem;
    width: 0.82rem;
}

.utf-attendance-choice strong {
    font-size: 0.92rem;
    min-width: 0;
}

.utf-attendance-choice > span:last-child {
    color: var(--utf-text);
    font-weight: 800;
}

.utf-attendance-choice--confirmed {
    color: var(--utf-success);
}

.utf-attendance-choice--confirmed .utf-attendance-choice__mark {
    background: var(--utf-success);
    box-shadow: inset 0 0 0 3px rgba(5, 8, 12, 0.78);
}

.utf-attendance-choice--pending {
    color: var(--utf-warning);
}

.utf-attendance-choice--unavailable {
    color: var(--utf-text-muted);
}

.utf-attendance-choice.updating {
    border-color: currentColor;
}

.utf-roster-groups {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.utf-roster-group {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.utf-roster-panel__header {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.utf-roster-panel__header > span {
    color: var(--utf-gold-strong);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-roster-group__header {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.55rem 1.25rem;
}

.utf-roster-group:first-child .utf-roster-group__header {
    border-top: 0;
}

.utf-roster-group__header > div {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    min-width: 0;
}

.utf-roster-group__header > span {
    color: var(--utf-text-subtle);
    font-size: 0.82rem;
    font-weight: 750;
}

.utf-roster-group__icon {
    color: var(--utf-gold-strong);
    height: 1rem;
    position: relative;
    width: 1rem;
}

.utf-roster-group__icon::before {
    border: 2px solid currentColor;
    border-radius: 2px;
    content: "";
    height: 0.75rem;
    left: 0.1rem;
    position: absolute;
    top: 0.1rem;
    transform: rotate(45deg);
    width: 0.75rem;
}

.utf-slot-list {
    display: flex;
    flex-direction: column;
}

.utf-slot-list__head,
.utf-slot-row {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.78fr) minmax(130px, 0.42fr) minmax(130px, auto);
}

.utf-slot-list__head {
    border-top: 1px solid var(--utf-stroke);
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 850;
    padding: 0.55rem 1.25rem;
    text-transform: uppercase;
}

.utf-slot-row {
    border-top: 1px solid var(--utf-stroke);
    min-height: 64px;
    padding: 0.72rem 1.25rem;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.utf-slot-row:hover {
    background: rgba(255, 255, 255, 0.035);
}

.utf-slot-row:last-child {
    border-bottom: 0;
}

.utf-slot-row.mine {
    background: rgba(96, 165, 250, 0.08);
    box-shadow: inset 3px 0 0 var(--utf-info);
}

.utf-slot-row.hidden {
    opacity: 0.56;
}

.utf-slot-main {
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
    min-width: 0;
}

.utf-slot-main h4 {
    color: var(--utf-text);
    font-size: 0.94rem;
    font-weight: 760;
    line-height: 1.25;
    margin: 0;
}

.utf-slot-main h4 {
    overflow-wrap: anywhere;
}

.utf-slot-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.utf-slot-badges span,
.utf-side-pill {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    min-height: 22px;
    padding: 0.18rem 0.45rem;
    text-transform: uppercase;
}

.utf-side-pill {
    background: rgba(174, 183, 194, 0.14);
    margin-bottom: 0.35rem;
}

.utf-side-pill--west {
    background: var(--utf-info-bg);
    border-color: rgba(96, 165, 250, 0.34);
    color: var(--utf-info);
}

.utf-side-pill--east {
    background: var(--utf-danger-bg);
    border-color: rgba(239, 68, 68, 0.34);
    color: var(--utf-danger);
}

.utf-side-pill--resistance {
    background: var(--utf-success-bg);
    border-color: rgba(34, 197, 94, 0.34);
    color: var(--utf-success);
}

.utf-side-pill--civilian {
    background: var(--utf-warning-bg);
    border-color: rgba(245, 158, 11, 0.34);
    color: var(--utf-warning);
}

.utf-side-pill--ambient,
.utf-side-pill--logic {
    background: var(--utf-gold-muted);
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-slot-assignee {
    color: var(--utf-text-muted);
    min-width: 0;
}

.utf-slot-user {
    align-items: center;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.utf-slot-user img,
.utf-slot-user__fallback {
    background: var(--utf-surface-2);
    border: 1px solid rgba(212, 173, 84, 0.35);
    border-radius: 999px;
    display: block;
    height: 2rem;
    object-fit: cover;
    width: 2rem;
}

.utf-slot-user__fallback::before {
    background: var(--utf-text-subtle);
    border-radius: 999px;
    content: "";
    display: block;
    height: 0.72rem;
    margin: 0.58rem auto 0;
    width: 0.72rem;
}

.utf-slot-user strong,
.utf-slot-user small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.utf-slot-user strong {
    color: var(--utf-text);
    font-size: 0.92rem;
}

.utf-slot-user small,
.utf-slot-open {
    color: var(--utf-text-subtle);
    font-size: 0.82rem;
}

.utf-slot-status {
    min-width: 0;
}

.utf-slot-assign-button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--utf-gold);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    display: inline-flex;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 850;
    gap: 0.45rem;
    justify-content: center;
    min-height: 36px;
    padding: 0 0.72rem;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
    white-space: nowrap;
}

.utf-slot-assign-button:not(:disabled) {
    cursor: pointer;
}

.utf-slot-assign-button:not(:disabled):hover {
    background: var(--utf-gold-muted);
}

.utf-slot-assign-button:disabled {
    border-color: var(--utf-stroke);
    color: var(--utf-text-subtle);
    cursor: not-allowed;
    opacity: 0.72;
}

.utf-slot-assign-button.mine {
    border-color: rgba(96, 165, 250, 0.45);
    color: var(--utf-info);
}

.utf-side-card > .utf-slot-assign-button {
    background: linear-gradient(180deg, rgba(226, 185, 90, 0.98), rgba(186, 143, 55, 0.98));
    border-color: rgba(255, 224, 141, 0.58);
    color: #111216;
    min-height: 46px;
    width: 100%;
}

.utf-side-card > .utf-slot-assign-button:disabled {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--utf-stroke);
    color: var(--utf-text-subtle);
}

.utf-roster-stats {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
}

.utf-roster-stats div,
.utf-package-list div {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.7rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 40px;
    padding: 0.65rem 0.75rem;
}

.utf-roster-stats div:last-child,
.utf-package-list div:last-child {
    border-bottom: 0;
}

.utf-roster-stats .utf-md-icon {
    color: var(--utf-text-muted);
}

.utf-roster-stats span:not(.utf-md-icon) {
    color: var(--utf-text-muted);
}

.utf-roster-stats strong {
    color: var(--utf-text);
    font-weight: 780;
    text-align: right;
}

.utf-package-list {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    margin: 0;
}

.utf-package-list div {
    grid-template-columns: minmax(6rem, 0.45fr) minmax(0, 1fr);
}

.utf-package-list dt,
.utf-package-list dd {
    margin: 0;
}

.utf-side-card fluent-button {
    width: 100%;
}

.utf-sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.utf-event-detail {
    --utf-event-shell-max: 1570px;
    --utf-event-gutter: max(2rem, calc((100vw - var(--utf-event-shell-max)) / 2));
    --utf-event-bg: #05080c;
    --utf-event-panel: rgba(10, 14, 19, 0.94);
    --utf-event-panel-strong: rgba(12, 17, 22, 0.96);
    --utf-event-panel-soft: rgba(255, 255, 255, 0.035);
    --utf-event-line: rgba(255, 255, 255, 0.16);
    --utf-event-line-strong: rgba(255, 255, 255, 0.22);
    --utf-event-text: #f3f4f6;
    --utf-event-muted: #b6bcc5;
    --utf-event-subtle: #858c96;
    --utf-event-gold: #d6ae54;
    --utf-event-gold-dim: rgba(214, 174, 84, 0.14);
    --utf-event-green: #27c65a;
    --utf-event-amber: #d7a928;
    --utf-event-red: #e24b42;
    background: var(--utf-event-bg);
    color: var(--utf-event-text);
}

.utf-mission-banner {
    --utf-mission-banner-background:
        linear-gradient(90deg, rgba(3, 6, 10, 0.96) 0%, rgba(3, 6, 10, 0.68) 44%, rgba(3, 6, 10, 0.1) 100%),
        linear-gradient(180deg, rgba(5, 8, 12, 0.08) 0%, rgba(5, 8, 12, 0.2) 56%, rgba(5, 8, 12, 0.82) 100%),
        var(--utf-event-image, none);
    min-height: 330px;
    padding: 1.25rem var(--utf-event-gutter) 0.35rem;
}

.utf-mission-banner__content {
    gap: 0.86rem;
}

.utf-event-back-link {
    color: var(--utf-event-muted);
    margin-bottom: 0.6rem;
}

.utf-event-back-link:hover {
    color: var(--utf-event-gold);
}

.utf-operation-tag {
    background: var(--utf-event-gold);
    border-color: rgba(255, 230, 150, 0.45);
    border-radius: 3px;
    color: #0b0f13;
    min-height: 24px;
}

.utf-mission-banner h1 {
    color: var(--utf-event-text);
    font-size: clamp(3rem, 4.15vw, 4.12rem);
    letter-spacing: 0;
}

.utf-mission-meta {
    background: rgba(8, 12, 16, 0.9);
    border: 1px solid var(--utf-event-line);
    border-radius: 3px;
    box-shadow: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0.1rem;
    max-width: 1120px;
}

.utf-mission-meta__item {
    border-right: 0;
    gap: 0.78rem;
    min-height: 88px;
    padding: 0.76rem 1.05rem;
    position: relative;
}

.utf-mission-meta__item:not(:last-child)::after {
    background: var(--utf-event-line-strong);
    bottom: 15%;
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
}

.utf-mission-meta__item fluent-icon {
    color: var(--utf-event-muted);
}

.utf-mission-meta__item span,
.utf-mission-meta__item small,
.utf-package-list dt {
    color: var(--utf-event-subtle);
}

.utf-mission-meta__item strong,
.utf-package-list dd {
    color: var(--utf-event-text);
}

.utf-event-detail__grid {
    gap: 1.45rem;
    grid-template-columns: minmax(0, 1fr) 350px;
    margin: 0 auto;
    padding: 0.35rem 0 4rem;
    width: min(calc(100% - 4rem), var(--utf-event-shell-max));
}

.utf-event-detail__main {
    gap: 0.85rem;
}

.utf-briefing-panel,
.utf-roster-panel,
.utf-side-card {
    background: var(--utf-event-panel);
    border: 1px solid var(--utf-event-line);
    border-radius: 3px;
    box-shadow: none;
    color: var(--utf-event-text);
}

.utf-roster-group {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.utf-panel-title h2,
.utf-side-card__header h2,
.utf-roster-group h3 {
    color: var(--utf-event-text);
    letter-spacing: 0;
}

.utf-panel-title__icon,
.utf-side-card__header {
    color: var(--utf-event-gold);
}

.utf-side-card__header h2 {
    color: var(--utf-event-gold);
}

.utf-briefing-panel .utf-panel-title,
.utf-roster-panel__header {
    border-bottom: 1px solid var(--utf-event-line);
    min-height: 54px;
    padding: 0.95rem 1.2rem;
}

.utf-briefing-objectives {
    gap: 0.68rem;
    padding: 1rem 1.2rem 1.05rem;
}

.utf-briefing-objectives li {
    color: var(--utf-event-muted);
}

.utf-briefing-objectives .utf-md-icon {
    color: var(--utf-event-gold);
}

.utf-briefing-notes {
    border-top: 1px solid var(--utf-event-line);
    color: var(--utf-event-muted);
    max-height: 156px;
    overflow: auto;
    padding: 1.1rem 1.2rem 1.2rem;
    scrollbar-color: var(--utf-scrollbar-thumb) var(--utf-scrollbar-track);
}

.utf-briefing-notes .utf-section-heading h3,
.utf-briefing-panel fluent-markdown :is(h1, h2, h3, h4) {
    color: var(--utf-event-text);
}

.utf-briefing-panel fluent-markdown,
.utf-briefing-panel p,
.utf-briefing-panel li,
.utf-muted {
    color: var(--utf-event-muted);
}

.utf-attendance-panel {
    gap: 0.85rem;
    margin-top: -323px;
    top: 88px;
}

.utf-side-card {
    gap: 0.85rem;
    padding: 0.95rem;
}

.utf-event-control-card {
    background: var(--utf-event-panel-strong);
}

.utf-attendance-choice {
    background: var(--utf-event-panel-soft);
    border-color: var(--utf-event-line);
    border-radius: 3px;
    color: var(--utf-event-text);
    min-height: 42px;
}

.utf-attendance-choice--confirmed {
    color: var(--utf-event-green);
}

.utf-attendance-choice--confirmed .utf-attendance-choice__mark {
    background: var(--utf-event-green);
}

.utf-attendance-choice--pending {
    color: var(--utf-event-amber);
}

.utf-attendance-choice--unavailable {
    color: var(--utf-event-subtle);
}

.utf-assign-slot-button,
.utf-command-nav-button {
    align-items: center;
    background: var(--utf-event-gold);
    border: 1px solid rgba(255, 230, 150, 0.5);
    border-radius: 3px;
    color: #0b0f13;
    display: inline-flex;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 850;
    gap: 0.48rem;
    height: 48px;
    justify-content: center;
    line-height: 1;
    padding: 0 1rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.utf-assign-slot-button:not(:disabled),
.utf-command-nav-button:not(:disabled) {
    cursor: pointer;
}

.utf-assign-slot-button:disabled,
.utf-command-nav-button:disabled {
    background: rgba(214, 174, 84, 0.22);
    border-color: rgba(214, 174, 84, 0.28);
    color: rgba(243, 244, 246, 0.58);
    cursor: not-allowed;
}

.utf-slot-register {
    display: grid;
}

.utf-slot-register__head,
.utf-slot-row {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(260px, 1.12fr) minmax(230px, 0.9fr) minmax(142px, 0.42fr) minmax(168px, auto);
}

.utf-slot-register__head {
    border-bottom: 1px solid var(--utf-event-line);
    color: var(--utf-event-subtle);
    font-size: 0.72rem;
    font-weight: 850;
    min-height: 36px;
    padding: 0 1.2rem;
    text-transform: uppercase;
}

.utf-roster-panel__header > span,
.utf-roster-group__header > span {
    color: var(--utf-event-gold);
}

.utf-roster-group__header {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid var(--utf-event-line);
    min-height: 44px;
    padding: 0.58rem 1.2rem;
}

.utf-roster-group:first-of-type .utf-roster-group__header {
    border-top: 0;
}

.utf-roster-group__icon {
    color: var(--utf-event-gold);
}

.utf-slot-row {
    border-top: 1px solid var(--utf-event-line);
    min-height: 58px;
    padding: 0.5rem 1.2rem;
}

.utf-slot-row:hover {
    background: rgba(255, 255, 255, 0.028);
}

.utf-slot-row.mine {
    background: rgba(39, 198, 90, 0.08);
    box-shadow: inset 3px 0 0 var(--utf-event-green);
}

.utf-slot-role-cell,
.utf-slot-user-stack,
.utf-slot-row-actions {
    align-items: center;
    display: grid;
    min-width: 0;
}

.utf-slot-role-cell {
    gap: 0.78rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.utf-slot-role-cell > div {
    align-items: center;
    display: grid;
    gap: 0 0.5rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.utf-slot-role-icon {
    color: var(--utf-event-gold);
    font-size: 1.15rem;
}

.utf-slot-role-cell h4 {
    color: var(--utf-event-text);
    font-size: 0.95rem;
    font-weight: 780;
    grid-column: 2;
    line-height: 1.22;
    margin: 0;
    overflow-wrap: anywhere;
}

.utf-slot-role-cell small {
    color: var(--utf-event-subtle);
    display: block;
    font-size: 0.78rem;
    grid-column: 2;
    margin-top: 0.18rem;
}

.utf-side-pill {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--utf-event-line);
    border-radius: 2px;
    color: var(--utf-event-subtle);
    grid-row: 1 / span 2;
    margin-bottom: 0;
    min-height: 20px;
    padding: 0.1rem 0.4rem;
}

.utf-side-pill--west {
    background: rgba(96, 165, 250, 0.09);
    border-color: rgba(96, 165, 250, 0.28);
    color: #8bbdf7;
}

.utf-side-pill--east {
    background: rgba(226, 75, 66, 0.1);
    border-color: rgba(226, 75, 66, 0.32);
    color: #ef7b73;
}

.utf-side-pill--resistance {
    background: rgba(39, 198, 90, 0.1);
    border-color: rgba(39, 198, 90, 0.32);
    color: var(--utf-event-green);
}

.utf-side-pill--civilian {
    background: rgba(215, 169, 40, 0.1);
    border-color: rgba(215, 169, 40, 0.32);
    color: var(--utf-event-amber);
}

.utf-side-pill--ambient,
.utf-side-pill--logic {
    background: var(--utf-event-gold-dim);
    border-color: rgba(214, 174, 84, 0.28);
    color: var(--utf-event-gold);
}

.utf-slot-assignee {
    color: var(--utf-event-muted);
}

.utf-slot-user-stack {
    gap: 0.68rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.utf-slot-avatars {
    display: flex;
    min-width: 2rem;
}

.utf-slot-avatars img,
.utf-slot-user__fallback {
    background: #151b22;
    border: 1px solid rgba(214, 174, 84, 0.36);
    border-radius: 999px;
    display: block;
    height: 2rem;
    object-fit: cover;
    width: 2rem;
}

.utf-slot-avatars > * + * {
    margin-left: -0.55rem;
}

.utf-slot-user-stack strong,
.utf-slot-user-stack small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.utf-slot-user-stack strong {
    color: var(--utf-event-text);
    font-size: 0.92rem;
}

.utf-slot-user-stack small,
.utf-slot-open {
    color: var(--utf-event-subtle);
    font-size: 0.82rem;
}

.utf-slot-row-actions {
    gap: 0.48rem;
    grid-template-columns: minmax(0, 1fr) 34px;
}

.utf-slot-assign-button {
    border-color: rgba(214, 174, 84, 0.48);
    border-radius: 3px;
    color: var(--utf-event-gold);
    min-height: 36px;
}

.utf-slot-assign-button:not(:disabled):hover {
    background: var(--utf-event-gold-dim);
}

.utf-slot-assign-button:disabled {
    border-color: var(--utf-event-line);
    color: var(--utf-event-subtle);
}

.utf-slot-assign-button.mine {
    border-color: rgba(39, 198, 90, 0.42);
    color: var(--utf-event-green);
}

.utf-slot-menu-button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--utf-event-line);
    border-radius: 3px;
    color: var(--utf-event-muted);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 34px;
}

.utf-slot-menu-button:not(:disabled) {
    cursor: pointer;
}

.utf-slot-menu-button:disabled {
    color: rgba(133, 140, 150, 0.46);
    cursor: not-allowed;
}

.utf-slot-menu-dots,
.utf-slot-menu-dots::before,
.utf-slot-menu-dots::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    width: 3px;
}

.utf-slot-menu-dots {
    position: relative;
}

.utf-slot-menu-dots::before,
.utf-slot-menu-dots::after {
    position: absolute;
    top: 0;
}

.utf-slot-menu-dots::before {
    left: -6px;
}

.utf-slot-menu-dots::after {
    right: -6px;
}

.utf-event-detail .utf-status--brand {
    background: rgba(214, 174, 84, 0.1);
    border-color: rgba(214, 174, 84, 0.24);
    color: var(--utf-event-gold);
}

.utf-event-detail .utf-status--brand .utf-status__dot {
    background: var(--utf-event-gold);
}

.utf-event-detail .utf-status--success {
    background: rgba(39, 198, 90, 0.1);
    border-color: rgba(39, 198, 90, 0.24);
    color: var(--utf-event-green);
}

.utf-event-detail .utf-status--success .utf-status__dot {
    background: var(--utf-event-green);
}

.utf-event-detail .utf-status--warning {
    background: rgba(215, 169, 40, 0.1);
    border-color: rgba(215, 169, 40, 0.24);
    color: var(--utf-event-amber);
}

.utf-event-detail .utf-status--warning .utf-status__dot {
    background: var(--utf-event-amber);
}

.utf-roster-stats,
.utf-package-list {
    border-color: var(--utf-event-line);
    border-radius: 3px;
}

.utf-roster-stats div,
.utf-package-list div {
    border-bottom-color: var(--utf-event-line);
}

.utf-roster-stats span:not(.utf-md-icon),
.utf-roster-stats .utf-md-icon {
    color: var(--utf-event-muted);
}

.utf-roster-stats strong {
    color: var(--utf-event-text);
}

.utf-event-detail-skeleton {
    min-height: 100%;
}

.utf-event-detail-skeleton .utf-skeleton {
    flex: 0 0 auto;
}

.utf-event-detail-skeleton .utf-mission-banner--skeleton {
    background-image:
        linear-gradient(90deg, rgba(3, 6, 10, 0.96) 0%, rgba(3, 6, 10, 0.78) 46%, rgba(3, 6, 10, 0.34) 100%),
        linear-gradient(135deg, rgba(214, 174, 84, 0.12), rgba(255, 255, 255, 0.025));
}

.utf-event-detail__grid--skeleton {
    pointer-events: none;
}

.utf-event-skeleton__back {
    height: 1rem;
    width: 8.5rem;
}

.utf-event-skeleton__tag {
    height: 24px;
    width: 6.2rem;
}

.utf-event-skeleton__title {
    height: clamp(3.3rem, 5.3vw, 4.35rem);
    width: min(100%, 34rem);
}

.utf-mission-meta--skeleton .utf-mission-meta__item > div {
    display: grid;
    gap: 0.42rem;
    min-width: 0;
}

.utf-event-skeleton__icon,
.utf-event-skeleton__panel-icon,
.utf-event-skeleton__objective-icon,
.utf-event-skeleton__group-icon,
.utf-event-skeleton__role-icon,
.utf-event-skeleton__avatar {
    border-radius: 999px;
}

.utf-event-skeleton__icon {
    height: 1.45rem;
    width: 1.45rem;
}

.utf-event-skeleton__label {
    height: 0.72rem;
    width: 4.4rem;
}

.utf-event-skeleton__strong {
    height: 1rem;
    width: min(100%, 8rem);
}

.utf-event-skeleton__small {
    height: 0.72rem;
    width: 5.6rem;
}

.utf-event-skeleton__panel-icon {
    height: 1.4rem;
    width: 1.4rem;
}

.utf-event-skeleton__panel-title,
.utf-event-skeleton__side-title {
    height: 1.05rem;
    width: 10rem;
}

.utf-briefing-skeleton__objectives {
    display: grid;
    gap: 0.72rem;
    padding: 1.05rem 1.2rem 1.15rem;
}

.utf-briefing-skeleton__objective {
    align-items: center;
    display: grid;
    gap: 0.72rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.utf-event-skeleton__objective-icon {
    height: 1.08rem;
    width: 1.08rem;
}

.utf-event-skeleton__objective-line {
    height: 1rem;
    width: min(100%, 42rem);
}

.utf-briefing-notes--skeleton {
    display: grid;
    gap: 0.7rem;
}

.utf-event-skeleton__kicker {
    height: 0.72rem;
    width: 6.6rem;
}

.utf-event-skeleton__section-title {
    height: 1.08rem;
    width: 13rem;
}

.utf-event-skeleton__briefing-line {
    height: 0.9rem;
    width: min(100%, 46rem);
}

.utf-event-skeleton__briefing-line--short {
    width: min(70%, 32rem);
}

.utf-event-skeleton__roster-count {
    height: 0.86rem;
    width: 8.5rem;
}

.utf-event-skeleton__head-cell {
    height: 0.74rem;
    width: 5.2rem;
}

.utf-event-skeleton__group-icon {
    height: 1rem;
    width: 1rem;
}

.utf-event-skeleton__group-title {
    height: 0.96rem;
    width: 11rem;
}

.utf-event-skeleton__group-count {
    height: 0.82rem;
    width: 7.6rem;
}

.utf-event-skeleton__role-icon {
    height: 1.15rem;
    width: 1.15rem;
}

.utf-slot-row--skeleton .utf-event-skeleton__side-pill {
    grid-row: 1 / span 2;
    height: 20px;
    width: 3.2rem;
}

.utf-slot-row--skeleton .utf-event-skeleton__slot-title {
    grid-column: 2;
    height: 1rem;
    width: min(100%, 13rem);
}

.utf-slot-row--skeleton .utf-event-skeleton__slot-small {
    grid-column: 2;
    height: 0.82rem;
    width: 6rem;
}

.utf-event-skeleton__avatar {
    height: 2rem;
    width: 2rem;
}

.utf-event-skeleton__assignee,
.utf-event-skeleton__assignee-subtitle {
    height: 0.9rem;
}

.utf-event-skeleton__assignee {
    width: min(100%, 9rem);
}

.utf-event-skeleton__assignee-subtitle {
    margin-top: 0.36rem;
    width: 6.4rem;
}

.utf-event-skeleton__status-pill {
    border-radius: 999px;
    height: 24px;
    width: 5.8rem;
}

.utf-event-skeleton__slot-button {
    height: 36px;
    width: 100%;
}

.utf-event-skeleton__slot-menu {
    height: 36px;
    width: 34px;
}

.utf-side-card--skeleton {
    min-height: 11rem;
}

.utf-event-skeleton__side-line {
    height: 0.9rem;
    width: 100%;
}

.utf-event-skeleton__side-line--short {
    width: 72%;
}

.utf-event-skeleton__side-button {
    height: 38px;
    margin-top: auto;
    width: 100%;
}

@media (max-width: 900px) {
    .utf-landing-hero {
        align-items: end;
        min-height: 560px;
        padding: 3rem 1.25rem;
    }

    .utf-landing-hero h1 {
        font-size: 3.2rem;
        max-width: 11ch;
    }

    .utf-events-header {
        align-items: start;
        flex-direction: column;
    }

    .utf-command-overview-split {
        grid-template-columns: 1fr;
    }

    .authority-master-detail {
        grid-template-columns: 1fr;
    }

    .authority-detail-panel {
        position: static;
    }

    .utf-event-detail__grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 0.75rem 0 3rem;
        width: calc(100% - 2.5rem);
    }

    .utf-attendance-panel {
        margin-top: 0;
        position: static;
    }

    .utf-mission-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .utf-mission-meta__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .utf-mission-meta__item::after {
        display: none;
    }

    .utf-mission-meta__item:nth-child(odd):not(:last-child)::after {
        bottom: 15%;
        display: block;
        top: 15%;
    }

    .utf-mission-banner h1 {
        font-size: 3rem;
    }

    .utf-slot-register__head,
    .utf-slot-list__head {
        display: none;
    }

    .utf-slot-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .utf-slot-row-actions {
        grid-template-columns: minmax(0, 1fr) 40px;
    }

    .utf-slot-assign-button {
        width: 100%;
    }

    .utf-event-skeleton__title {
        width: min(100%, 28rem);
    }

    .utf-slot-row--skeleton .utf-event-skeleton__slot-title,
    .utf-slot-row--skeleton .utf-event-skeleton__slot-small {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .utf-landing-hero {
        min-height: 520px;
    }

    .utf-landing-hero h1,
    .utf-events-header h1 {
        font-size: 2.45rem;
    }

    .utf-hero-actions .utf-button,
    .utf-events-header .utf-button {
        width: 100%;
    }

    .utf-operation-card,
    .utf-event-card {
        min-height: auto;
    }

    .utf-operation-card dl {
        grid-template-columns: 1fr;
    }

    .utf-mission-banner {
        min-height: 380px;
        padding: 2rem 1.25rem;
    }

    .utf-mission-banner h1 {
        font-size: 2.35rem;
    }

    .utf-mission-meta {
        grid-template-columns: 1fr;
    }

    .utf-mission-meta__item {
        border-right: 0;
    }

    .utf-mission-meta__item:nth-child(odd):not(:last-child)::after {
        display: none;
    }

    .utf-roster-panel__header,
    .utf-roster-group__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .utf-attendance-meter {
        grid-template-columns: 1fr;
    }

    .authority-row {
        grid-template-columns: 1fr;
    }

    .authority-row strong,
    .authority-row span:not(.utf-status):not(.utf-status__dot),
    .authority-row small {
        white-space: normal;
    }

    .authority-meta {
        grid-template-columns: 1fr;
    }

    .utf-event-skeleton__title {
        height: 3rem;
    }

    .utf-event-skeleton__panel-title,
    .utf-event-skeleton__side-title,
    .utf-event-skeleton__group-title {
        width: min(100%, 9rem);
    }

    .utf-slot-row--skeleton .utf-slot-role-cell > div {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

.utf-community-nav {
    background: linear-gradient(180deg, rgba(5, 8, 12, 0.98), rgba(7, 11, 15, 0.94));
    grid-template-columns: minmax(19rem, auto) minmax(0, 1fr) auto;
    min-height: 76px;
}

.utf-community-brand {
    gap: 0.65rem;
}

.utf-community-brand img {
    height: 44px;
    width: 44px;
}

.utf-community-brand__utf {
    color: var(--utf-gold-strong);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.utf-community-brand__divider {
    background: var(--utf-gold);
    display: inline-block;
    height: 32px;
    opacity: 0.76;
    width: 1px;
}

.utf-community-brand__stack {
    color: var(--utf-gold-strong);
    display: inline-flex;
    flex-direction: column;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.05;
}

.utf-community-links {
    gap: 1rem;
}

.utf-community-link {
    border-radius: 0;
    font-size: 0.88rem;
    letter-spacing: 0;
    min-height: 76px;
    padding: 1.85rem 0.15rem 1.55rem;
    position: relative;
    text-transform: uppercase;
}

.utf-community-link.active {
    box-shadow: none;
    color: var(--utf-gold-strong);
}

.utf-community-link.active::after {
    background: var(--utf-gold);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}

.utf-community-mobile-link--button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
    width: 100%;
}

.utf-community-actions {
    gap: 0.9rem;
}

.utf-sign-in-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    justify-content: center;
    min-height: 38px;
    padding: 0 0.8rem;
    text-transform: uppercase;
}

.utf-sign-in-button:hover {
    background: var(--utf-gold-muted);
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-sign-in-scrim {
    align-items: center;
    background: rgba(2, 4, 7, 0.72);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 80;
}

.utf-sign-in-dialog {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.98), rgba(9, 14, 20, 0.98));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-md);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.54);
    color: var(--utf-text);
    display: grid;
    gap: 1rem;
    max-width: 420px;
    padding: 1.25rem;
    width: min(100%, 420px);
}

.utf-sign-in-dialog h2 {
    font-size: 1.65rem;
    margin: 0.25rem 0 0;
}

.utf-sign-in-dialog p {
    color: var(--utf-text-muted);
    line-height: 1.55;
    margin: 0.45rem 0 0;
}

.utf-sign-in-options {
    display: grid;
    gap: 0.65rem;
}

.utf-sign-in-option {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0.2rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.9rem;
    text-decoration: none;
}

.utf-sign-in-option:hover {
    border-color: var(--utf-gold);
}

.utf-sign-in-option__copy {
    display: grid;
    gap: 0.2rem;
}

.utf-sign-in-option__copy > span {
    color: var(--utf-gold-strong);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-sign-in-option__copy strong {
    color: var(--utf-text);
    font-size: 0.98rem;
}

.utf-sign-in-unavailable {
    background: rgba(174, 183, 194, 0.08);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    margin: 0;
    padding: 0.9rem;
}

.utf-brand-icon {
    color: #fff;
    flex: 0 0 auto;
}

.utf-provider-button {
    align-items: center;
    display: inline-flex;
    gap: 0.45rem;
}

.utf-authentication-page {
    display: grid;
    min-height: min(70vh, 680px);
    padding: 4rem 1.5rem;
    place-items: center;
}

.utf-authentication-panel {
    display: grid;
    gap: 1.25rem;
    max-width: 440px;
    padding: 1.5rem;
    width: 100%;
}

.utf-authentication-panel h1 {
    margin: 0.35rem 0 0;
}

.utf-authentication-panel p {
    color: var(--utf-text-muted);
}

.utf-landing {
    background:
        linear-gradient(180deg, rgba(7, 11, 15, 0) 0%, var(--utf-bg) 32rem),
        var(--utf-bg);
}

.utf-landing-hero {
    background-image:
        linear-gradient(90deg, rgba(7, 11, 15, 0.9) 0%, rgba(7, 11, 15, 0.44) 46%, rgba(7, 11, 15, 0.68) 100%),
        linear-gradient(0deg, rgba(7, 11, 15, 0.9) 0%, rgba(7, 11, 15, 0.02) 44%, rgba(7, 11, 15, 0.12) 100%),
        var(--utf-hero-image, none);
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    display: block;
    min-height: min(720px, calc(100dvh - 150px));
    overflow: hidden;
    padding: 0;
    position: relative;
}

.utf-landing-hero__inner {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    margin: 0 auto;
    max-width: 1440px;
    min-height: inherit;
    padding: 5rem 4rem 3rem;
}

.utf-landing-hero__content {
    display: grid;
    gap: 1rem;
    max-width: 690px;
}

.utf-landing-hero h1 {
    font-size: 5.7rem;
    line-height: 0.92;
    max-width: 12ch;
    text-transform: uppercase;
}

.utf-landing-hero p {
    color: #d7dde5;
    max-width: 620px;
}

.utf-landing-hero__summary {
    display: -webkit-box;
    line-clamp: 3;
    max-height: calc(1.7em * 3);
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.utf-hero-meta--secondary span {
    background: rgba(6, 10, 15, 0.62);
}

.utf-hero-rail {
    display: grid;
    gap: 0.75rem;
    justify-items: end;
    justify-self: stretch;
}

.utf-hero-status-panel {
    background: rgba(7, 11, 15, 0.78);
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    display: grid;
    gap: 1rem;
    justify-self: end;
    padding: 1.1rem 1.25rem;
    width: min(100%, 320px);
}

.utf-hero-status-panel div {
    display: grid;
    gap: 0.35rem;
}

.utf-hero-status-panel div + div {
    border-top: 1px solid var(--utf-stroke);
    padding-top: 1rem;
}

.utf-hero-status-panel span {
    color: var(--utf-text-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.utf-hero-status-panel strong {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.utf-hero-status-panel__success {
    color: var(--utf-success);
}

.utf-hero-status-panel__warning {
    color: var(--utf-warning);
}

.utf-hero-status-panel__danger {
    color: var(--utf-danger);
}

.utf-hero-status-panel__neutral {
    color: var(--utf-text);
}

.utf-hero-comms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    justify-self: end;
    width: min(100%, 320px);
}

.utf-hero-comms a {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: inline-flex;
    flex: 1 1 9rem;
    gap: 0.5rem;
    justify-content: space-between;
    min-height: 34px;
    padding: 0 0.7rem;
    text-decoration: none;
}

.utf-hero-comms span {
    color: var(--utf-text);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-hero-comms .utf-hero-comms__service {
    align-items: center;
    display: inline-flex;
    gap: 0.4rem;
}

.utf-hero-comms__service svg {
    height: 1rem;
    width: 1rem;
}

.utf-hero-comms strong {
    color: var(--utf-gold-strong);
    display: inline-flex;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.utf-landing-band,
.utf-who-we-are,
.utf-media-band,
.utf-join-band {
    margin: 0 auto;
    max-width: 1440px;
    padding: 3rem 4rem;
}

.utf-landing-band {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.78), rgba(12, 17, 23, 0.46));
    border-bottom: 1px solid var(--utf-stroke);
    border-top: 1px solid var(--utf-stroke);
    max-width: none;
}

.utf-landing-band > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
}

.utf-section-heading--row {
    align-items: end;
    flex-direction: row;
    justify-content: space-between;
}

.utf-link-action {
    align-items: center;
    color: var(--utf-gold-strong);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 850;
    min-height: 36px;
    text-decoration: none;
    text-transform: uppercase;
}

.utf-link-action--button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.utf-link-action--button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.utf-operation-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-operation-card,
.utf-event-card {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.96), rgba(10, 15, 21, 0.98));
}

.utf-operation-card--featured,
.utf-event-card--featured {
    border-color: var(--utf-gold);
}

.utf-operation-card__image {
    align-items: start;
    display: flex;
    justify-content: space-between;
    padding: 0.85rem;
}

.utf-operation-card__star {
    align-items: center;
    background: var(--utf-gold-muted);
    border: 1px solid var(--utf-gold);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.utf-operation-card__schedule,
.utf-event-card__schedule {
    color: var(--utf-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.utf-operation-card__schedule span,
.utf-event-card__schedule span {
    align-items: center;
    display: inline-flex;
    gap: 0.35rem;
}

.utf-operation-card__footer,
.utf-event-card__footer {
    align-items: center;
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.85rem;
}

.utf-operation-card__attendance-success {
    color: var(--utf-success);
}

.utf-operation-card__attendance-warning {
    color: var(--utf-warning);
}

.utf-operation-card__attendance-danger {
    color: var(--utf-danger);
}

.utf-operation-card__attendance-neutral {
    color: var(--utf-text-muted);
}

.utf-status--brand {
    background: var(--utf-gold-muted);
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-status--neutral {
    background: rgba(174, 183, 194, 0.14);
    border-color: rgba(174, 183, 194, 0.28);
    color: var(--utf-text-muted);
}

.utf-status--info {
    background: var(--utf-info-bg);
    border-color: rgba(96, 165, 250, 0.34);
    color: var(--utf-info);
}

.utf-media-band {
    display: grid;
    gap: 1.25rem;
}

.utf-media-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-media-grid article {
    align-content: end;
    aspect-ratio: 1.35;
    background-image:
        linear-gradient(0deg, rgba(7, 11, 15, 0.88), rgba(7, 11, 15, 0.16)),
        var(--utf-event-image, none);
    background-position: center;
    background-size: cover;
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    display: grid;
    gap: 0.35rem;
    overflow: hidden;
    padding: 1rem;
}

.utf-media-grid span {
    color: var(--utf-gold-strong);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-media-grid strong {
    color: var(--utf-text);
    font-size: 1.1rem;
    line-height: 1.3;
}

.utf-join-band {
    align-items: center;
    background: linear-gradient(90deg, rgba(186, 160, 90, 0.16), rgba(17, 24, 32, 0.7));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.utf-join-band h2,
.utf-join-band p {
    margin: 0;
}

.utf-join-band h2 {
    color: var(--utf-text);
    font-size: 2.1rem;
    line-height: 1.1;
    margin-top: 0.35rem;
}

.utf-join-band p {
    color: var(--utf-text-muted);
    line-height: 1.6;
    margin-top: 0.65rem;
    max-width: 620px;
}

.utf-community-page {
    background:
        linear-gradient(180deg, rgba(7, 11, 15, 0) 0%, var(--utf-bg) 24rem),
        var(--utf-bg);
    min-height: 100%;
}

.utf-community-page-hero {
    align-items: end;
    background: #070b0f;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    isolation: isolate;
    justify-content: space-between;
    min-height: 320px;
    overflow: hidden;
    padding: 4rem max(1.5rem, calc((100% - 1440px) / 2 + 4rem)) 2.25rem;
    position: relative;
}

.utf-community-page-hero::before {
    background-image:
        linear-gradient(90deg, rgba(7, 11, 15, 0.94), rgba(7, 11, 15, 0.44) 54%, rgba(7, 11, 15, 0.82)),
        var(--utf-hero-image, none);
    background-position: center, center 48%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.utf-community-page-hero > * {
    position: relative;
    z-index: 1;
}

.utf-community-page-hero h1 {
    color: var(--utf-text);
    font-size: 3.8rem;
    font-weight: 850;
    line-height: 1;
    margin: 0.35rem 0 0;
    max-width: 12ch;
    text-transform: uppercase;
}

.utf-community-page-hero p {
    color: var(--utf-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0.75rem 0 0;
    max-width: 640px;
}

.utf-community-page-section {
    margin: 0 auto;
    max-width: 1440px;
    padding: 3rem 4rem;
}

.utf-unit-page {
    background:
        linear-gradient(180deg, rgba(7, 11, 15, 0) 0%, var(--utf-bg) 24rem),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 112px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 112px),
        var(--utf-bg);
}

.utf-community-page-hero.utf-unit-hero {
    align-items: end;
    display: grid;
    gap: clamp(1.5rem, 4vw, 5rem);
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.48fr);
    min-height: 520px;
    overflow: hidden;
    position: relative;
}

.utf-join-page .utf-community-page-hero.utf-unit-hero {
    gap: clamp(1.25rem, 3vw, 3.25rem);
    min-height: clamp(320px, 38vh, 410px);
    padding-bottom: clamp(1.45rem, 2.4vw, 1.9rem);
    padding-top: clamp(2.4rem, 4.5vw, 3.35rem);
}

.utf-join-page .utf-unit-hero__copy {
    gap: 0.85rem;
}

.utf-join-page .utf-unit-hero__copy h1 {
    font-size: clamp(2.45rem, 4.1vw, 3.05rem);
    line-height: 0.98;
    max-width: 20ch;
}

.utf-join-page .utf-unit-hero__copy p {
    line-height: 1.55;
}

.utf-join-page .utf-unit-hero-panel {
    gap: 0.8rem;
    padding: 0.98rem;
}

.utf-join-page .utf-community-page-section:first-of-type {
    padding-top: clamp(0.6rem, 1vw, 0.8rem);
}

.utf-join-page .utf-community-page-section:first-of-type .utf-section-heading {
    margin-bottom: 0.25rem;
}

.utf-join-page .utf-community-page-section:first-of-type .utf-section-heading h2 {
    font-size: clamp(1.55rem, 2.25vw, 1.75rem);
}

.utf-community-page-hero.utf-unit-hero::before {
    background-image:
        linear-gradient(90deg, rgba(7, 11, 15, 0.96) 0%, rgba(7, 11, 15, 0.72) 50%, rgba(7, 11, 15, 0.88) 100%),
        repeating-linear-gradient(90deg, rgba(186, 160, 90, 0.12) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 84px),
        var(--utf-hero-image, none);
    background-position: center, center, center, center 48%;
    background-repeat: no-repeat, repeat, repeat, no-repeat;
    background-size: cover, 84px 84px, 84px 84px, cover;
}

.utf-community-page-hero.utf-unit-hero::after {
    background:
        linear-gradient(90deg, transparent, rgba(186, 160, 90, 0.24), transparent),
        linear-gradient(180deg, transparent, rgba(186, 160, 90, 0.18), transparent);
    content: "";
    height: 100%;
    opacity: 0.34;
    pointer-events: none;
    position: absolute;
    right: max(2rem, calc((100% - 1440px) / 2 + 18rem));
    top: 0;
    width: 1px;
    z-index: 0;
}

.utf-unit-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.utf-unit-hero__copy h1 {
    max-width: 13ch;
}

.utf-unit-hero__copy p {
    max-width: 720px;
}

.utf-unit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.utf-unit-hero-panel {
    align-self: end;
    background:
        linear-gradient(180deg, rgba(17, 24, 32, 0.94), rgba(9, 13, 18, 0.96));
    border: 1px solid rgba(186, 160, 90, 0.38);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: 1.15rem;
    position: relative;
    z-index: 1;
}

.utf-unit-panel-heading {
    align-items: center;
    display: flex;
    gap: 0.8rem;
    min-width: 0;
}

.utf-unit-panel-heading fluent-icon {
    color: var(--utf-gold-strong);
    flex: 0 0 auto;
}

.utf-unit-panel-heading span,
.utf-unit-status-list dt,
.utf-unit-section-note,
.utf-unit-feature-card__action {
    color: var(--utf-text-subtle);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-unit-panel-heading strong {
    color: var(--utf-text);
    display: block;
    font-size: 1.05rem;
    line-height: 1.25;
    margin-top: 0.2rem;
}

.utf-unit-status-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

.utf-unit-status-list div {
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.25rem;
    padding-top: 0.7rem;
}

.utf-unit-status-list dd {
    color: var(--utf-text);
    font-weight: 750;
    margin: 0;
}

.utf-unit-section {
    display: grid;
    gap: 1.25rem;
}

.utf-unit-governance {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
}

.utf-unit-statement,
.utf-unit-process,
.utf-unit-infrastructure,
.utf-unit-platform-list article,
.utf-unit-values article,
.utf-unit-feature-card {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
}

.utf-unit-statement {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 330px;
    padding: 1.5rem;
}

.utf-unit-statement h3,
.utf-unit-infrastructure h2 {
    color: var(--utf-text);
    font-size: 2rem;
    font-weight: 850;
    line-height: 1.1;
    margin: 0;
    max-width: 16ch;
}

.utf-unit-statement p,
.utf-unit-process p,
.utf-unit-feature-card p,
.utf-unit-infrastructure p,
.utf-unit-platform-list p,
.utf-unit-values p {
    color: var(--utf-text-muted);
    line-height: 1.65;
    margin: 0;
}

.utf-unit-statement p {
    max-width: 780px;
}

.utf-unit-statement p:first-of-type {
    margin-top: 1rem;
}

.utf-unit-statement p + p {
    margin-top: 0.75rem;
}

.utf-unit-process {
    counter-reset: unit-process;
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.utf-unit-process li {
    counter-increment: unit-process;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.2rem;
}

.utf-unit-process li + li {
    border-top: 1px solid var(--utf-stroke);
}

.utf-unit-process li > span {
    align-items: center;
    background: var(--utf-gold-muted);
    border: 1px solid rgba(186, 160, 90, 0.42);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    display: inline-flex;
    height: 2.4rem;
    justify-content: center;
    width: 2.4rem;
}

.utf-unit-process strong {
    color: var(--utf-text);
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.utf-section-heading--row .utf-unit-section-note {
    align-self: end;
    max-width: 22rem;
    text-align: right;
}

.utf-unit-feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.utf-unit-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 310px;
    padding: 1.15rem;
}

.utf-unit-feature-card__top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.utf-unit-feature-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    display: inline-flex;
    height: 2.4rem;
    justify-content: center;
    width: 2.4rem;
}

.utf-unit-feature-card h3,
.utf-unit-platform-list h3,
.utf-unit-values h3 {
    color: var(--utf-text);
    font-size: 1.13rem;
    font-weight: 850;
    line-height: 1.25;
    margin: 0;
}

.utf-unit-feature-card__action {
    border-top: 1px solid var(--utf-stroke);
    color: var(--utf-gold-strong);
    font-weight: 850;
    margin-top: auto;
    padding-top: 0.8rem;
    text-decoration: none;
}

.utf-unit-feature-card__action:hover {
    color: var(--utf-gold);
}

.utf-unit-document {
    display: grid;
    gap: 1.4rem;
    margin-inline: auto;
    max-width: 58rem;
    padding: 1.5rem;
}

.utf-unit-document__header {
    border-bottom: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.55rem;
    padding-bottom: 1rem;
}

.utf-unit-document__header h2 {
    color: var(--utf-text);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.04;
    margin: 0;
}

.utf-unit-document__header p {
    color: var(--utf-muted);
    margin: 0;
    max-width: 46rem;
}

.utf-unit-document__header span:last-child {
    color: var(--utf-soft);
    font-size: 0.85rem;
}

.utf-unit-document :is(h1, h2, h3, h4) {
    color: var(--utf-text);
}

.utf-unit-document :is(p, li) {
    color: var(--utf-muted);
    line-height: 1.7;
}

.utf-unit-state {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    padding: 0.38rem 0.48rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.utf-unit-state--planned {
    background: var(--utf-info-bg);
    border-color: rgba(96, 165, 250, 0.36);
    color: #9ec5ff;
}

.utf-unit-state--restricted {
    background: var(--utf-danger-bg);
    border-color: rgba(239, 68, 68, 0.34);
    color: #fca5a5;
}

.utf-unit-state--active {
    background: var(--utf-success-bg);
    border-color: rgba(34, 197, 94, 0.34);
    color: #86efac;
}

.utf-unit-infrastructure {
    align-items: stretch;
    background:
        linear-gradient(90deg, rgba(17, 24, 32, 0.98), rgba(12, 18, 24, 0.96)),
        repeating-linear-gradient(135deg, rgba(186, 160, 90, 0.1) 0 1px, transparent 1px 18px);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
    padding: 1.5rem;
}

.utf-unit-infrastructure > div:first-child {
    align-content: end;
    display: grid;
    gap: 1rem;
}

.utf-unit-infrastructure .utf-button {
    justify-self: start;
}

.utf-unit-platform-list {
    display: grid;
    gap: 0.75rem;
}

.utf-unit-platform-list article {
    align-items: start;
    background: rgba(7, 11, 15, 0.42);
    box-shadow: none;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1rem;
}

.utf-unit-platform-list fluent-icon {
    color: var(--utf-gold-strong);
}

.utf-unit-values {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.utf-unit-values article {
    box-shadow: none;
    min-height: 210px;
    padding: 1.1rem;
}

.utf-unit-values h3 {
    margin-bottom: 0.65rem;
}

.utf-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.utf-join-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-join-grid section {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
}

.utf-join-grid h3 {
    color: var(--utf-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.utf-join-grid p {
    color: var(--utf-text-muted);
    line-height: 1.65;
    margin: 0;
}

.utf-join-grid .utf-button {
    align-self: flex-start;
    margin-top: auto;
}

.utf-sign-in-options--inline {
    margin-top: auto;
}

.utf-join-mini-steps {
    counter-reset: join-mini-step;
    display: grid;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utf-join-mini-steps li {
    align-items: center;
    border-top: 1px solid var(--utf-stroke);
    color: var(--utf-text);
    counter-increment: join-mini-step;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: auto minmax(0, 1fr);
    line-height: 1.35;
    padding-top: 0.55rem;
}

.utf-join-mini-steps li::before {
    align-items: center;
    background: var(--utf-gold-muted);
    border: 1px solid rgba(186, 160, 90, 0.4);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    content: counter(join-mini-step);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 850;
    height: 1.8rem;
    justify-content: center;
    width: 1.8rem;
}

.utf-join-paths {
    display: grid;
    align-items: start;
    gap: clamp(1rem, 2.6vw, 1.6rem);
    grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
    position: relative;
}

.utf-join-paths::before {
    background:
        linear-gradient(90deg, transparent, rgba(186, 160, 90, 0.48), transparent),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    content: "";
    height: 1px;
    left: 1rem;
    opacity: 0.52;
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 5.65rem;
}

.utf-join-path,
.utf-join-request-panel {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    color: var(--utf-text);
}

.utf-join-path {
    animation: utf-join-panel-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
    background:
        linear-gradient(145deg, rgba(186, 160, 90, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(17, 24, 32, 0.98), rgba(9, 13, 18, 0.98));
    display: grid;
    gap: 0.8rem;
    isolation: isolate;
    min-height: 0;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.utf-join-path--community {
    justify-self: start;
}

.utf-join-path--formal {
    animation-delay: 100ms;
    border-color: rgba(186, 160, 90, 0.28);
}

.utf-join-path::before {
    animation: utf-join-panel-scan 5.8s ease-in-out infinite;
    background: linear-gradient(105deg, transparent 26%, rgba(212, 173, 84, 0.16), transparent 58%);
    content: "";
    inset: 0;
    opacity: 0.68;
    pointer-events: none;
    position: absolute;
    transform: translateX(-125%);
    z-index: 0;
}

.utf-join-path > * {
    position: relative;
    z-index: 1;
}

.utf-join-path h3,
.utf-join-request-panel h3 {
    color: var(--utf-text);
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0;
}

.utf-join-path p,
.utf-join-request-panel p,
.utf-join-stepper span {
    color: var(--utf-text-muted);
    line-height: 1.6;
    margin: 0;
}

.utf-join-stepper {
    counter-reset: join-step;
    display: grid;
    gap: 0.65rem;
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
}

.utf-join-stepper li {
    align-content: center;
    animation: utf-join-step-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(7, 11, 15, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid rgba(186, 160, 90, 0.58);
    border-radius: var(--utf-radius-sm);
    counter-increment: join-step;
    display: grid;
    gap: 0.26rem 0.78rem;
    grid-template-columns: 2.05rem minmax(0, 1fr);
    min-height: 5.65rem;
    overflow: hidden;
    padding: 0.75rem 0.85rem;
    position: relative;
}

.utf-join-stepper li:nth-child(1) {
    animation-delay: 120ms;
}

.utf-join-stepper li:nth-child(2) {
    animation-delay: 180ms;
}

.utf-join-stepper li:nth-child(3) {
    animation-delay: 240ms;
}

.utf-join-stepper li:nth-child(4) {
    animation-delay: 300ms;
}

.utf-join-stepper li:nth-child(5) {
    animation-delay: 360ms;
}

.utf-join-stepper li::before {
    align-items: center;
    align-self: start;
    background:
        linear-gradient(180deg, rgba(212, 173, 84, 0.22), rgba(186, 160, 90, 0.12));
    border: 1px solid rgba(186, 160, 90, 0.42);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    content: counter(join-step, decimal-leading-zero);
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 900;
    grid-row: 1 / span 2;
    height: 2.05rem;
    justify-content: center;
    line-height: 1;
    width: 2.05rem;
}

.utf-join-stepper li::after {
    background: linear-gradient(180deg, rgba(186, 160, 90, 0.5), transparent);
    bottom: -0.66rem;
    content: "";
    left: 1.87rem;
    opacity: 0.58;
    position: absolute;
    top: calc(0.75rem + 2.05rem);
    width: 1px;
}

.utf-join-stepper li:last-child::after {
    display: none;
}

.utf-join-stepper strong {
    color: var(--utf-text);
    grid-column: 2;
    font-size: 0.96rem;
    line-height: 1.25;
}

.utf-join-stepper span {
    font-size: 0.9rem;
    grid-column: 2;
    line-height: 1.45;
}

@keyframes utf-join-panel-enter {
    from {
        filter: blur(5px);
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes utf-join-step-enter {
    from {
        opacity: 0;
        transform: translateX(-0.75rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes utf-join-panel-scan {
    0%,
    54% {
        transform: translateX(-125%);
    }

    72%,
    100% {
        transform: translateX(125%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .utf-join-path,
    .utf-join-path::before,
    .utf-join-stepper li {
        animation: none;
    }
}

.utf-join-request-panel {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.utf-join-request-panel--split {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.utf-join-contribution-panel {
    min-height: auto;
}

.utf-join-request-meta {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.utf-join-request-meta div {
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.2rem;
    padding-top: 0.6rem;
}

.utf-join-request-meta dt {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-join-request-meta dd {
    color: var(--utf-text);
    font-weight: 700;
    margin: 0;
    overflow-wrap: anywhere;
}

.utf-join-form {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.utf-join-form__wide,
.utf-join-form-actions {
    grid-column: 1 / -1;
}

.utf-join-check {
    align-items: start;
    color: var(--utf-text-muted);
    gap: 0.65rem;
    line-height: 1.45;
    text-transform: none !important;
}

.utf-join-check input {
    flex: 0 0 auto;
    margin-top: 0.2rem;
}

.utf-join-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.utf-verein-hero .utf-unit-hero__copy h1 {
    max-width: 10ch;
}

.utf-unit-feature-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-media-band--page {
    max-width: 1440px;
}

.utf-media-grid--expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-field-report-band {
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 1440px;
    padding: 3.25rem 4rem 3.75rem;
}

.utf-field-report-preview {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.42fr) minmax(20rem, 0.78fr);
}

.utf-field-report-feature,
.utf-field-report-row,
.utf-field-report-feature-card,
.utf-field-report-list-row {
    color: var(--utf-text);
    text-decoration: none;
}

.utf-field-report-feature {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.96), rgba(9, 13, 18, 0.98));
    border: 1px solid rgba(186, 160, 90, 0.38);
    border-radius: var(--utf-radius-md);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    min-height: 310px;
    overflow: hidden;
}

.utf-field-report-feature__image,
.utf-field-report-row__image,
.utf-field-report-feature-card__image,
.utf-field-report-list-row__image {
    background-image:
        linear-gradient(0deg, rgba(7, 11, 15, 0.16), rgba(7, 11, 15, 0.08)),
        var(--utf-report-image, none);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    min-width: 0;
}

.utf-field-report-feature__body,
.utf-field-report-feature-card__body,
.utf-field-report-list-row__body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
}

.utf-field-report-feature__body {
    justify-content: end;
    padding: 1.25rem;
}

.utf-field-report-feature span,
.utf-field-report-row span,
.utf-field-report-feature-card span,
.utf-field-report-list-row span {
    color: var(--utf-gold-strong);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-field-report-feature small,
.utf-field-report-row small,
.utf-field-report-feature-card small,
.utf-field-report-list-row small {
    color: var(--utf-text-subtle);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.utf-field-report-feature h3,
.utf-field-report-row h3,
.utf-field-report-feature-card h2,
.utf-field-report-list-row h2 {
    color: var(--utf-text);
    line-height: 1.08;
    margin: 0;
    overflow-wrap: anywhere;
}

.utf-field-report-feature h3 {
    font-size: 2rem;
}

.utf-field-report-feature p,
.utf-field-report-feature-card p,
.utf-field-report-list-row p {
    color: var(--utf-text-muted);
    line-height: 1.55;
    margin: 0;
}

.utf-field-report-rail {
    display: grid;
    gap: 1rem;
}

.utf-field-report-row {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 9.5rem minmax(0, 1fr);
    min-height: 146px;
    overflow: hidden;
}

.utf-field-report-row__image {
    min-height: 100%;
}

.utf-field-report-row > div:last-child {
    align-content: center;
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.9rem 0.9rem 0.9rem 0;
}

.utf-field-report-row h3 {
    font-size: 1.08rem;
}

.utf-field-report-feature--skeleton,
.utf-field-report-row--skeleton {
    pointer-events: none;
}

.utf-field-report-skeleton__image {
    animation: utf-skeleton-shimmer 1.35s ease-in-out infinite;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.11) 42%,
            rgba(255, 255, 255, 0.04) 82%
        );
    background-size: 220% 100%;
}

.utf-field-report-skeleton__category {
    height: 0.8rem;
    width: 5.5rem;
}

.utf-field-report-skeleton__date {
    height: 0.78rem;
    width: 7rem;
}

.utf-field-report-skeleton__title {
    height: 4.25rem;
    width: min(100%, 20rem);
}

.utf-field-report-skeleton__line {
    height: 0.9rem;
    width: 100%;
}

.utf-field-report-skeleton__line--short {
    width: 70%;
}

.utf-field-report-skeleton__row-title {
    height: 2.3rem;
    width: min(100%, 13rem);
}

.utf-field-report-feature:hover,
.utf-field-report-row:hover,
.utf-field-report-feature-card:hover,
.utf-field-report-list-row:hover {
    border-color: var(--utf-gold);
}

.utf-field-reports-page {
    background:
        linear-gradient(180deg, rgba(7, 11, 15, 0) 0%, var(--utf-bg) 25rem),
        var(--utf-bg);
    min-height: 100%;
}

.utf-field-reports-hero {
    align-items: end;
    --utf-field-reports-hero-background:
        linear-gradient(90deg, rgba(7, 11, 15, 0.95), rgba(7, 11, 15, 0.5) 48%, rgba(7, 11, 15, 0.82)),
        linear-gradient(0deg, rgba(7, 11, 15, 0.92), rgba(7, 11, 15, 0.08) 58%),
        var(--utf-hero-image, none);
    background: #070b0f;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    isolation: isolate;
    min-height: min(520px, calc(100dvh - 104px));
    overflow: hidden;
    padding: 4.5rem max(1.5rem, calc((100% - 1440px) / 2 + 4rem)) 2.5rem;
    position: relative;
}

.utf-field-reports-hero::before {
    background-image: var(--utf-field-reports-hero-background);
    background-position: center 48%;
    background-size: cover;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.utf-field-reports-hero > * {
    position: relative;
    z-index: 1;
}

.utf-field-reports-hero__content {
    display: grid;
    gap: 1rem;
    max-width: 720px;
}

.utf-field-reports-hero h1,
.utf-field-report-detail__hero h1 {
    color: var(--utf-text);
    font-size: 4.8rem;
    font-weight: 850;
    line-height: 0.94;
    margin: 0;
    text-transform: uppercase;
}

.utf-field-reports-hero p,
.utf-field-report-detail__hero p {
    color: #d7dde5;
    font-size: 1.05rem;
    line-height: 1.68;
    margin: 0;
    max-width: 680px;
}

.utf-field-reports-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.utf-field-reports-main {
    display: grid;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1440px;
    padding: 3rem 4rem 4rem;
}

.utf-field-report-feature-block {
    display: grid;
}

.utf-field-report-feature-card {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.96), rgba(9, 13, 18, 0.98));
    border: 1px solid rgba(186, 160, 90, 0.42);
    border-radius: var(--utf-radius-md);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 360px;
    overflow: hidden;
}

.utf-field-report-feature-card__body {
    justify-content: end;
    padding: 1.4rem;
}

.utf-field-report-feature-card h2 {
    font-size: 2.35rem;
}

.utf-field-report-feature-card strong {
    color: var(--utf-gold-strong);
    font-size: 0.82rem;
    font-weight: 850;
    margin-top: 0.4rem;
    text-transform: uppercase;
}

.utf-field-report-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.utf-field-report-list {
    display: grid;
    gap: 0.9rem;
}

.utf-field-report-list-row {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0;
    grid-template-columns: 14rem minmax(0, 1fr);
    min-height: 168px;
    overflow: hidden;
}

.utf-field-report-list-row__body {
    justify-content: center;
    padding: 1rem;
}

.utf-field-report-list-row__body > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.utf-field-report-list-row h2 {
    font-size: 1.5rem;
}

.utf-field-report-detail {
    background: var(--utf-bg);
    min-height: 100%;
}

.utf-field-report-detail__hero {
    align-items: end;
    --utf-field-report-detail-hero-background:
        linear-gradient(90deg, rgba(7, 11, 15, 0.95), rgba(7, 11, 15, 0.58) 54%, rgba(7, 11, 15, 0.84)),
        linear-gradient(0deg, rgba(7, 11, 15, 0.94), rgba(7, 11, 15, 0.1) 58%),
        var(--utf-report-image, none);
    background: #070b0f;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    isolation: isolate;
    min-height: 460px;
    overflow: hidden;
    padding: 4rem max(1.5rem, calc((100% - 1180px) / 2)) 2.5rem;
    position: relative;
}

.utf-field-report-detail__hero::before {
    background-image: var(--utf-field-report-detail-hero-background);
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.utf-field-report-detail__hero > * {
    position: relative;
    z-index: 1;
}

.utf-field-report-detail__back {
    background: rgba(7, 11, 15, 0.54);
    justify-self: start;
}

.utf-field-report-detail__hero > div {
    display: grid;
    gap: 0.9rem;
    max-width: 760px;
}

.utf-field-report-detail__hero small {
    color: var(--utf-text-muted);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-field-report-detail__layout {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(13rem, 0.32fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1180px;
    padding: 2.5rem 1.5rem 4rem;
}

.utf-field-report-detail__meta {
    border-top: 2px solid var(--utf-gold);
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: 92px;
}

.utf-field-report-detail__meta dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.utf-field-report-detail__meta dt,
.utf-field-report-detail__meta dd {
    border-bottom: 1px solid var(--utf-stroke);
    margin: 0;
    padding: 0.7rem 0;
}

.utf-field-report-detail__meta dt {
    color: var(--utf-text-subtle);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-field-report-detail__meta dd {
    color: var(--utf-text);
    overflow-wrap: anywhere;
}

.utf-field-report-detail__body {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    padding: 1.5rem;
}

.utf-field-report-detail__body fluent-markdown,
.utf-field-report-detail__body p,
.utf-field-report-detail__body li {
    color: var(--utf-text-muted);
    line-height: 1.72;
}

.utf-field-report-detail__body fluent-markdown :is(h1, h2, h3, h4) {
    color: var(--utf-text);
    margin: 1.4rem 0 0.55rem;
}

.utf-field-report-detail__body fluent-markdown :is(p, ul, ol, blockquote) {
    margin: 0.85rem 0;
}

.field-report-command__ledger-header {
    align-items: center;
}

.field-report-command__table {
    min-width: 980px;
}

.field-report-command__table th:last-child,
.field-report-command__table td:last-child {
    text-align: right;
    width: 8rem;
}

.field-report-command__table td:last-child .utf-button {
    min-height: 34px;
}

.field-report-editor-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.field-report-editor-shell {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.field-report-editor-shell__header {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.field-report-editor-shell__header h2 {
    color: var(--utf-text);
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0.2rem 0 0;
}

.field-report-editor-form {
    padding: 1rem;
}

.field-report-editor-preview {
    margin: 0 1rem 1rem;
}

.field-report-editor-actions {
    border-top: 1px solid var(--utf-stroke);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
    padding: 1rem;
}

.field-report-command__form {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-report-command__field--wide {
    grid-column: 1 / -1;
}

.field-report-command__form label {
    color: var(--utf-text-muted);
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.field-report-command__form label > span {
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.field-report-command__form input:not([type="checkbox"]),
.field-report-command__form textarea {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(12, 18, 24, 0.98), rgba(7, 11, 15, 0.94));
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    box-sizing: border-box;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 0 0 1px rgba(255, 255, 255, 0.018);
    caret-color: var(--utf-gold);
    color: var(--utf-text);
    font: inherit;
    min-height: 42px;
    min-width: 0;
    padding: 0.7rem 0.75rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    width: 100%;
}

.field-report-command__form input:not([type="checkbox"])::placeholder,
.field-report-command__form textarea::placeholder {
    color: rgba(212, 220, 224, 0.46);
}

.field-report-command__form input:not([type="checkbox"]):hover,
.field-report-command__form textarea:hover {
    border-color: rgba(210, 220, 225, 0.34);
}

.field-report-command__form input:not([type="checkbox"]):focus,
.field-report-command__form textarea:focus {
    border-color: var(--utf-gold);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(186, 160, 90, 0.2);
    outline: 2px solid rgba(186, 160, 90, 0.26);
    outline-offset: 2px;
}

.field-report-command__form textarea {
    line-height: 1.48;
    resize: vertical;
}

.field-report-command__form-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.32fr);
}

.field-report-command__checks {
    align-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.field-report-command__checks label {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: inline-flex;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0 0.7rem;
}

.field-report-command__checks input {
    width: auto;
}

.field-report-command__image-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0.85rem;
    padding: 0.85rem;
}

.field-report-command__image-heading {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
}

.field-report-command__image-heading strong {
    color: var(--utf-text);
    display: block;
    margin-top: 0.15rem;
}

.field-report-command__image-heading > span {
    color: var(--utf-text-muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.field-report-command__image-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1.2fr);
}

.field-report-command__image-source,
.field-report-command__gallery-picker {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
}

.field-report-command__gallery-picker {
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    padding: 0.75rem;
}

.field-report-command__gallery-heading {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.field-report-command__gallery-heading strong {
    color: var(--utf-text);
    display: block;
    margin-top: 0.15rem;
}

.field-report-command__gallery-picker label {
    color: var(--utf-text-subtle);
    display: grid;
    font-size: 0.74rem;
    font-weight: 850;
    gap: 0.45rem;
    text-transform: uppercase;
}

.field-report-command__gallery-note {
    color: var(--utf-text-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.field-report-command__gallery-note--warning {
    color: var(--utf-warning);
}

.field-report-command__image-uploader fluent-input-file {
    min-height: 100%;
}

.field-report-command__image-uploader fluent-input-file::part(input-file-drop-zone) {
    min-height: 14rem;
}

.field-report-command__image-preview-shell {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
}

.field-report-command__image-preview {
    align-items: center;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(186, 160, 90, 0.1), rgba(38, 88, 122, 0.12)),
        rgba(3, 6, 9, 0.72);
    background-position: center;
    background-size: cover;
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    display: flex;
    justify-content: center;
    min-height: 12rem;
    overflow: hidden;
    text-align: center;
}

.field-report-command__image-preview--empty {
    flex-direction: column;
    gap: 0.4rem;
}

.field-report-command__image-preview-shell dl {
    display: grid;
    gap: 0.35rem 0.75rem;
    grid-template-columns: max-content minmax(0, 1fr);
    margin: 0;
}

.field-report-command__image-preview-shell dt {
    color: var(--utf-text-muted);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.field-report-command__image-preview-shell dd {
    color: var(--utf-text);
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.field-report-command__preview-shell {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: grid;
    gap: 0.75rem;
    padding: 0.75rem;
}

.field-report-command__preview-toggle {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    min-width: 0;
}

.field-report-command__preview-toggle > div {
    min-width: 0;
}

.field-report-command__preview-toggle strong {
    color: var(--utf-text);
    display: block;
    font-size: 0.92rem;
    margin-top: 0.15rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-report-command__preview-toggle .utf-command-filter {
    flex: 0 0 auto;
}

.field-report-command__preview {
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.85rem;
    padding-top: 0.85rem;
}

.field-report-command__preview h3,
.field-report-command__preview p {
    margin: 0;
}

.field-report-command__preview h3 {
    color: var(--utf-text);
    font-size: 1.15rem;
}

.field-report-command__preview p,
.field-report-command__preview fluent-markdown,
.field-report-command__preview fluent-markdown p,
.field-report-command__preview fluent-markdown li {
    color: var(--utf-text-muted);
    line-height: 1.58;
}

.field-report-command__preview fluent-markdown :is(h1, h2, h3, h4) {
    color: var(--utf-text);
    font-size: 1.05rem;
    margin: 1rem 0 0.4rem;
}

.utf-events-page--board {
    background: linear-gradient(180deg, rgba(7, 11, 15, 0.04), var(--utf-bg) 28rem);
    gap: 0;
    max-width: none;
    padding: 0 0 3rem;
}

.utf-events-hero {
    align-items: end;
    --utf-events-hero-background:
        linear-gradient(90deg, rgba(7, 11, 15, 0.95), rgba(7, 11, 15, 0.48) 54%, rgba(7, 11, 15, 0.82)),
        var(--utf-hero-image, none);
    background: #070b0f;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    isolation: isolate;
    justify-content: space-between;
    min-height: 280px;
    overflow: hidden;
    padding: 3.5rem max(1.5rem, calc((100% - 1440px) / 2 + 4rem)) 2rem;
    position: relative;
}

.utf-events-hero::before {
    background-image: var(--utf-events-hero-background);
    background-position: center, center 48%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.utf-events-hero > * {
    position: relative;
    z-index: 1;
}

.utf-events-hero h1 {
    color: var(--utf-text);
    font-size: 3.8rem;
    font-weight: 850;
    line-height: 1;
    margin: 0.35rem 0 0;
}

.utf-events-hero p {
    color: var(--utf-text-muted);
    line-height: 1.6;
    margin: 0.75rem 0 0;
    max-width: 620px;
}

.utf-events-toolbar {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1440px;
    padding: 1.25rem 4rem;
    width: 100%;
}

.utf-events-toolbar__summary {
    align-items: center;
    color: var(--utf-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.utf-events-grid--board {
    box-sizing: border-box;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 4rem;
    width: 100%;
}

.utf-events-page--board .utf-state-panel {
    margin: 0 auto 1rem;
    max-width: calc(1440px - 8rem);
    width: calc(100% - 8rem);
}

.utf-event-card {
    min-height: 32rem;
}

.utf-event-card__image {
    justify-content: space-between;
}

.utf-event-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.utf-event-card__slot-badge {
    align-items: center;
    background: rgba(7, 11, 15, 0.78);
    border: 1px solid var(--utf-stroke);
    border-radius: 999px;
    color: var(--utf-text);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 850;
    min-height: 26px;
    padding: 0.25rem 0.65rem;
    text-transform: uppercase;
}

.utf-event-card__meta--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utf-event-card__progress {
    display: grid;
    gap: 0.55rem;
}

.utf-event-card__progress > div:first-child {
    align-items: center;
    color: var(--utf-text-muted);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.utf-event-card__progress strong {
    color: var(--utf-text);
    font-size: 0.9rem;
}

.utf-event-card__footer .utf-button {
    min-width: 132px;
}

.utf-operation-card,
.utf-event-card {
    background:
        radial-gradient(circle at 18% 0%, rgba(186, 160, 90, 0.1), transparent 16rem),
        linear-gradient(180deg, rgba(17, 24, 32, 0.98), rgba(8, 13, 19, 0.98));
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: var(--utf-radius-md);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
    position: relative;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.utf-operation-card:hover,
.utf-event-card:hover {
    border-color: rgba(212, 173, 84, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    transform: translateY(-2px);
}

.utf-operation-card {
    grid-template-rows: 14.5rem minmax(0, 1fr);
    min-height: 34rem;
}

.utf-event-card {
    grid-template-rows: 15rem minmax(0, 1fr);
    min-height: 35rem;
}

.utf-operation-card--featured,
.utf-event-card--featured {
    border-color: var(--utf-gold);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(212, 173, 84, 0.24);
}

.utf-operation-card__image,
.utf-event-card__image {
    align-items: end;
    background-image:
        linear-gradient(0deg, rgba(7, 11, 15, 0.84), rgba(7, 11, 15, 0.08) 58%),
        var(--utf-event-image, none);
    display: flex;
    justify-content: space-between;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.utf-operation-card__image::after,
.utf-event-card__image::after {
    background:
        linear-gradient(90deg, rgba(7, 11, 15, 0.36), transparent 42%, rgba(7, 11, 15, 0.24)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.utf-operation-card__image > *,
.utf-event-card__image > * {
    position: relative;
    z-index: 1;
}

.utf-event-card__badges {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.utf-event-card__slot-badge {
    background: rgba(7, 11, 15, 0.82);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--utf-text);
}

.utf-operation-card__star {
    background: rgba(7, 11, 15, 0.82);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.utf-operation-card__body,
.utf-event-card__body {
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.98), rgba(8, 13, 19, 0.98)),
        var(--utf-surface);
    gap: 0.9rem;
    padding: 1rem 1.15rem 1.15rem;
}

.utf-operation-card h3,
.utf-event-card h2 {
    font-size: 1.28rem;
    line-height: 1.18;
}

.utf-operation-card__schedule,
.utf-event-card__schedule {
    border-bottom: 1px solid var(--utf-stroke);
    gap: 1rem;
    padding-bottom: 0.65rem;
}

.utf-operation-card__schedule span,
.utf-event-card__schedule span {
    color: var(--utf-text-muted);
    font-weight: 650;
}

.utf-event-card__meta--inline {
    border-bottom: 1px solid var(--utf-stroke);
    gap: 0.85rem;
    padding-bottom: 0.75rem;
}

.utf-operation-card dt,
.utf-event-card__meta dt {
    color: #8fa0b2;
    font-size: 0.7rem;
    letter-spacing: 0;
}

.utf-operation-card dd,
.utf-event-card__meta dd {
    color: #d7dde5;
    font-size: 0.91rem;
}

.utf-event-card__progress {
    gap: 0.5rem;
}

.utf-event-card__progress > div:first-child {
    color: var(--utf-text-muted);
    font-size: 0.9rem;
}

.utf-event-card__progress strong {
    color: var(--utf-text);
}

.utf-slot-meter {
    background: rgba(255, 255, 255, 0.1);
    height: 0.42rem;
}

.utf-slot-meter span {
    background: linear-gradient(90deg, var(--utf-success), #6ee7b7);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.24);
}

.utf-operation-card__footer,
.utf-event-card__footer {
    align-items: stretch;
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    margin-top: auto;
    padding-top: 0.85rem;
    width: 100%;
}

.utf-operation-card__footer > span:first-child,
.utf-event-card__footer > span:first-child {
    justify-self: end;
}

.utf-operation-card__cta,
.utf-event-card__footer .utf-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 850;
    gap: 0.45rem;
    justify-content: center;
    min-height: 42px;
    min-width: 0;
    padding: 0 0.9rem;
    text-transform: uppercase;
    width: 100%;
}

.utf-operation-card--featured .utf-operation-card__cta,
.utf-event-card--featured .utf-event-card__footer .utf-button {
    background: linear-gradient(180deg, var(--utf-gold-strong), var(--utf-gold));
    border-color: var(--utf-gold-strong);
    color: #101014;
}

.utf-operation-card__attendance-success,
.utf-operation-card__attendance-warning,
.utf-operation-card__attendance-danger,
.utf-operation-card__attendance-neutral {
    align-items: center;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 850;
    gap: 0.4rem;
    text-transform: uppercase;
}

.utf-operation-card__attendance-success::before,
.utf-operation-card__attendance-warning::before,
.utf-operation-card__attendance-danger::before,
.utf-operation-card__attendance-neutral::before {
    border-radius: 999px;
    content: "";
    height: 0.5rem;
    width: 0.5rem;
}

.utf-operation-card__attendance-success::before {
    background: var(--utf-success);
}

.utf-operation-card__attendance-warning::before {
    background: var(--utf-warning);
}

.utf-operation-card__attendance-danger::before {
    background: var(--utf-danger);
}

.utf-operation-card__attendance-neutral::before {
    background: var(--utf-text-muted);
}

@media (max-width: 1180px) {
    .utf-community-nav {
        grid-template-columns: minmax(16rem, auto) minmax(0, 1fr) auto;
    }

    .utf-community-links {
        gap: 0.65rem;
    }

    .utf-landing-hero__inner {
        padding: 4rem 2rem 2.5rem;
    }

    .utf-landing-band,
    .utf-who-we-are,
    .utf-media-band,
    .utf-join-band,
    .utf-community-page-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .utf-community-page-hero {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .utf-events-hero,
    .utf-events-toolbar,
    .utf-events-grid--board {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .utf-events-page--board .utf-state-panel {
        max-width: calc(100% - 4rem);
        width: calc(100% - 4rem);
    }
}

@media (max-width: 1040px) {
    .utf-community-nav {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .utf-community-links,
    .utf-command-entry {
        display: none;
    }

    .utf-mobile-menu-button {
        display: flex;
    }

    .utf-community-mobile-menu {
        display: block;
    }

    .utf-landing-hero__inner {
        grid-template-columns: 1fr;
    }

    .utf-hero-rail {
        justify-items: start;
    }

    .utf-hero-comms,
    .utf-hero-status-panel {
        justify-self: start;
        width: min(100%, 520px);
    }

    .utf-operation-strip,
    .utf-media-grid,
    .utf-events-grid--board {
        grid-template-columns: 1fr 1fr;
    }

    .utf-events-hero {
        align-items: start;
        flex-direction: column;
    }

    .utf-community-page-hero {
        align-items: start;
        flex-direction: column;
    }

    .utf-join-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .utf-landing-hero h1 {
        font-size: 3.2rem;
        max-width: 11ch;
    }
}

@media (max-width: 720px) {
    .utf-community-nav {
        min-height: 72px;
        padding-inline: 1rem;
    }

    .utf-community-brand img {
        height: 40px;
        width: 40px;
    }

    .utf-community-brand__utf {
        font-size: 1.7rem;
    }

    .utf-community-brand__divider,
    .utf-community-brand__stack,
    .utf-sign-in-button {
        display: none;
    }

    .utf-landing-hero {
        min-height: auto;
    }

    .utf-landing-hero__inner {
        padding: 3rem 1.25rem 2rem;
    }

    .utf-landing-hero h1 {
        font-size: 3rem;
    }

    .utf-hero-meta span {
        width: 100%;
    }

    .utf-hero-rail,
    .utf-hero-comms,
    .utf-hero-comms a,
    .utf-hero-actions .utf-button {
        width: 100%;
    }

    .utf-landing-band,
    .utf-who-we-are,
    .utf-media-band,
    .utf-join-band,
    .utf-community-page-section {
        padding: 2rem 1.25rem;
    }

    .utf-community-page-hero {
        min-height: 240px;
        padding: 2.5rem 1.25rem 2rem;
    }

    .utf-community-page-hero h1 {
        font-size: 2.5rem;
    }

    .utf-section-heading--row,
    .utf-join-band,
    .utf-events-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-operation-strip,
    .utf-media-grid,
    .utf-events-grid--board {
        grid-template-columns: 1fr;
    }

    .utf-operation-card,
    .utf-event-card {
        min-height: auto;
    }

    .utf-events-hero,
    .utf-events-toolbar,
    .utf-events-grid--board {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .utf-events-hero {
        min-height: 240px;
        padding-top: 2.5rem;
    }

    .utf-events-hero h1 {
        font-size: 2.5rem;
    }

    .utf-event-card__meta--inline {
        grid-template-columns: 1fr;
    }

    .utf-event-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-event-card__footer .utf-button {
        width: 100%;
    }

    .utf-events-page--board .utf-state-panel {
        max-width: calc(100% - 2.5rem);
        width: calc(100% - 2.5rem);
    }
}

/* Reference-matched operation card anatomy. */
.utf-operation-strip,
.utf-events-grid--board {
    box-sizing: border-box;
    gap: 1.25rem;
}

.utf-operation-strip {
    padding: 0 1.25rem;
    width: 100%;
}

.utf-landing-band > .utf-state-panel {
    max-width: calc(1440px - 2.5rem);
    width: calc(100% - 2.5rem);
}

.utf-events-toolbar {
    max-width: 1440px;
    padding: 1.25rem;
}

.utf-events-grid--board {
    max-width: 1440px;
    padding: 0 1.25rem;
}

.utf-events-page--board .utf-state-panel {
    max-width: calc(1440px - 2.5rem);
    width: calc(100% - 2.5rem);
}

.utf-operation-card,
.utf-event-card {
    background: #070c12;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 0.45rem;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    display: grid;
    grid-template-rows: 10.25rem minmax(0, auto);
    min-height: 0;
}

.utf-operation-card--featured,
.utf-event-card--featured {
    border-color: var(--utf-gold);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(212, 173, 84, 0.42);
}

.utf-operation-card__image,
.utf-event-card__image {
    align-items: end;
    background-image:
        linear-gradient(0deg, rgba(7, 12, 18, 0.82), transparent 46%),
        var(--utf-event-image, none);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
}

.utf-operation-card__image::after,
.utf-event-card__image::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 18, 0.2), transparent 50%, rgba(7, 12, 18, 0.22)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%);
}

.utf-event-card__badges {
    align-items: end;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
}

.utf-event-card__badges .utf-status,
.utf-event-card__slot-badge {
    align-items: center;
    border-radius: 0.28rem;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    min-height: 31px;
    padding: 0 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.utf-event-card__badges .utf-status {
    background: linear-gradient(180deg, var(--utf-gold-strong), var(--utf-gold));
    border: 0;
    color: #fff;
}

.utf-event-card__slot-badge {
    background: rgba(7, 12, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f7fb;
}

.utf-operation-card__star {
    background: rgba(7, 12, 18, 0.86);
    border-color: var(--utf-gold);
    border-radius: 0.32rem;
    color: #f7db73;
    height: 38px;
    right: 0.9rem;
    top: 0.9rem;
    width: 38px;
}

.utf-operation-card__body,
.utf-event-card__body {
    background: #070c12;
    gap: 0.75rem;
    padding: 0.95rem 1.12rem 1.1rem;
}

.utf-operation-card__schedule,
.utf-event-card__schedule {
    border-bottom: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.35rem;
    padding-bottom: 0;
}

.utf-operation-card__schedule span,
.utf-event-card__schedule span {
    align-items: center;
    color: #c4cbd5;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 550;
    gap: 0.55rem;
    min-width: 0;
    white-space: nowrap;
}

.utf-operation-card__schedule svg,
.utf-event-card__schedule svg,
.utf-event-card__meta-row svg {
    color: #98a2af;
    flex: 0 0 auto;
}

.utf-operation-card h3,
.utf-event-card h2 {
    color: #f4f7fb;
    font-size: 1.28rem;
    font-weight: 850;
    line-height: 1.15;
}

.utf-event-card__meta-row {
    align-items: center;
    color: #c4cbd5;
    display: grid;
    font-size: 0.9rem;
    gap: 0.9rem;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr) minmax(0, 1fr);
}

.utf-event-card__meta-row span {
    align-items: center;
    display: inline-flex;
    gap: 0.55rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.utf-event-card__progress {
    align-items: center;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: max-content minmax(4.5rem, 1fr) max-content max-content;
}

.utf-event-card__progress-label {
    color: #c4cbd5;
    font-size: 0.88rem;
    white-space: nowrap;
}

.utf-event-card__progress strong {
    color: #f4f7fb;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.utf-slot-meter {
    background: rgba(255, 255, 255, 0.1);
    height: 0.36rem;
}

.utf-slot-meter span {
    background: linear-gradient(90deg, #3bc263, #6fda70);
    box-shadow: none;
}

.utf-operation-card__attendance-success,
.utf-operation-card__attendance-warning,
.utf-operation-card__attendance-danger,
.utf-operation-card__attendance-neutral {
    align-items: center;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 850;
    gap: 0.4rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.utf-operation-card__attendance-success {
    color: var(--utf-success);
}

.utf-operation-card__attendance-warning {
    color: var(--utf-warning);
}

.utf-operation-card__attendance-danger {
    color: var(--utf-danger);
}

.utf-operation-card__attendance-neutral {
    color: #c4cbd5;
}

.utf-operation-card__attendance-success::before,
.utf-operation-card__attendance-warning::before,
.utf-operation-card__attendance-danger::before,
.utf-operation-card__attendance-neutral::before {
    border-radius: 999px;
    content: "";
    flex: 0 0 auto;
    height: 0.62rem;
    width: 0.62rem;
}

.utf-operation-card__footer,
.utf-event-card__footer {
    border-top: 0;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0.2rem;
    padding-top: 0;
}

.utf-operation-card__footer > span:first-child,
.utf-event-card__footer > span:first-child {
    justify-self: stretch;
}

.utf-operation-card__cta,
.utf-event-card__footer .utf-button {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 0.28rem;
    min-height: 42px;
}

.utf-operation-card--featured .utf-operation-card__cta,
.utf-event-card--featured .utf-event-card__footer .utf-button {
    background: linear-gradient(180deg, var(--utf-gold-strong), var(--utf-gold));
    border-color: var(--utf-gold-strong);
    color: #101014;
}

.utf-events-grid--skeleton {
    pointer-events: none;
}

.utf-event-card--skeleton,
.utf-event-card--skeleton:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    transform: none;
}

.utf-event-card-skeleton__image {
    background-image:
        linear-gradient(0deg, rgba(7, 12, 18, 0.82), transparent 46%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
}

.utf-skeleton {
    animation: utf-skeleton-shimmer 1.35s ease-in-out infinite;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0.14) 42%,
            rgba(255, 255, 255, 0.07) 82%
        );
    background-size: 220% 100%;
    border-radius: 0.28rem;
    display: block;
}

.utf-skeleton--badge {
    height: 31px;
    width: 5.8rem;
}

.utf-skeleton--badge-short {
    width: 4.4rem;
}

.utf-skeleton--schedule {
    height: 1.1rem;
    width: 8.5rem;
}

.utf-skeleton--schedule-short {
    width: 5.8rem;
}

.utf-skeleton--title {
    height: 3rem;
    width: min(100%, 22rem);
}

.utf-skeleton--meta {
    height: 1.15rem;
    width: 100%;
}

.utf-skeleton--progress-label {
    height: 1rem;
    width: 6.5rem;
}

.utf-skeleton--meter {
    border-radius: 999px;
    height: 0.36rem;
    width: 100%;
}

.utf-skeleton--progress-value {
    height: 1rem;
    width: 3.5rem;
}

.utf-skeleton--progress-state {
    height: 1rem;
    width: 5rem;
}

.utf-skeleton--button {
    border-radius: 0.28rem;
    height: 42px;
    width: 100%;
}

@keyframes utf-skeleton-shimmer {
    0% {
        background-position: 120% 0;
    }

    100% {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .utf-skeleton,
    .utf-field-report-skeleton__image {
        animation: none;
        background-position: 0 0;
    }
}

@media (max-width: 720px) {
    .utf-events-toolbar,
    .utf-events-grid--board {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .utf-operation-strip {
        padding: 0;
    }

    .utf-landing-band > .utf-state-panel {
        max-width: 100%;
        width: 100%;
    }

    .utf-operation-card,
    .utf-event-card {
        grid-template-rows: 10rem minmax(0, auto);
    }

    .utf-operation-card__schedule,
    .utf-event-card__schedule {
        gap: 1rem;
    }

    .utf-event-card__meta-row {
        gap: 0.65rem;
        grid-template-columns: minmax(0, 1fr);
    }

    .utf-event-card__progress {
        gap: 0.5rem;
        grid-template-columns: max-content minmax(2rem, 1fr) max-content;
    }

    .utf-event-card__progress > span:last-child {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

@media (max-width: 980px) {
    .utf-field-report-preview,
    .utf-field-report-feature,
    .utf-field-report-feature-card,
    .utf-field-report-detail__layout {
        grid-template-columns: 1fr;
    }

    .utf-field-report-feature__image,
    .utf-field-report-feature-card__image {
        min-height: 220px;
    }

    .utf-field-report-detail__meta {
        max-height: none;
        overflow: visible;
        position: static;
    }
}

@media (max-width: 760px) {
    .utf-field-report-band,
    .utf-field-reports-main {
        padding-inline: 1rem;
    }

    .utf-field-reports-hero,
    .utf-field-report-detail__hero {
        min-height: 420px;
        padding: 3rem 1rem 2rem;
    }

    .utf-field-reports-hero h1,
    .utf-field-report-detail__hero h1 {
        font-size: 3rem;
    }

    .utf-field-report-row,
    .utf-field-report-list-row {
        grid-template-columns: 1fr;
    }

    .utf-field-report-row__image,
    .utf-field-report-list-row__image {
        min-height: 190px;
    }

    .utf-field-report-row > div:last-child,
    .utf-field-report-list-row__body {
        padding: 1rem;
    }

    .utf-field-report-detail__layout {
        gap: 1rem;
        padding-inline: 1rem;
    }

    .field-report-command__form-grid {
        grid-template-columns: 1fr;
    }

    .field-report-command__form {
        grid-template-columns: 1fr;
    }

    .field-report-command__image-grid {
        grid-template-columns: 1fr;
    }

    .field-report-command__preview-toggle {
        align-items: stretch;
        flex-direction: column;
    }

    .field-report-command__preview-toggle .utf-command-filter {
        justify-content: center;
        width: 100%;
    }

    .field-report-editor-shell__header,
    .field-report-editor-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .field-report-editor-actions .utf-command-button {
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .utf-unit-feature-grid,
    .utf-unit-feature-grid--three,
    .utf-unit-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .utf-unit-infrastructure {
        grid-template-columns: 1fr;
    }

    .verein-membership-request-workspace {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {
    .utf-community-page-hero.utf-unit-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .utf-join-page .utf-community-page-hero.utf-unit-hero {
        min-height: auto;
    }

    .utf-community-page-hero.utf-unit-hero::after {
        display: none;
    }

    .utf-unit-hero-panel {
        justify-self: stretch;
    }

    .utf-unit-governance {
        grid-template-columns: 1fr;
    }

    .utf-join-paths,
    .utf-join-request-panel--split {
        grid-template-columns: 1fr;
    }

    .utf-join-paths::before {
        display: none;
    }

    .utf-join-path--community {
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    .utf-community-page-hero.utf-unit-hero {
        gap: 1rem;
        padding-bottom: 1.25rem;
        padding-top: 2rem;
    }

    .utf-unit-hero__copy {
        gap: 0.8rem;
    }

    .utf-unit-hero__copy p {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .utf-unit-actions,
    .utf-unit-actions .utf-button {
        width: 100%;
    }

    .utf-unit-hero-panel {
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .utf-unit-status-list {
        gap: 0.55rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .utf-unit-status-list div {
        padding-top: 0.55rem;
    }

    .utf-unit-status-list dd {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .utf-section-heading--row .utf-unit-section-note {
        align-self: start;
        text-align: left;
    }

    .utf-unit-statement {
        min-height: auto;
        padding: 1.2rem;
    }

    .utf-unit-statement h3,
    .utf-unit-infrastructure h2 {
        font-size: 1.65rem;
        max-width: none;
    }

    .utf-unit-feature-grid,
    .utf-unit-feature-grid--three,
    .utf-unit-values {
        grid-template-columns: 1fr;
    }

    .utf-unit-feature-card,
    .utf-unit-values article {
        min-height: auto;
    }

    .utf-unit-infrastructure {
        padding: 1.15rem;
    }

    .utf-unit-platform-list article,
    .utf-unit-process li {
        grid-template-columns: 1fr;
    }

    .utf-join-form,
    .utf-join-request-meta,
    .verein-membership-request-meta {
        grid-template-columns: 1fr;
    }

    .utf-join-path,
    .utf-join-request-panel {
        min-height: auto;
        padding: 1rem;
    }

    .utf-join-stepper li {
        min-height: auto;
    }

    .verein-membership-request-actions,
    .verein-membership-request-actions .utf-button,
    .utf-join-form-actions,
    .utf-join-form-actions .utf-button {
        width: 100%;
    }
}


.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

.loading-progress {
    position: absolute;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
    left: 50%;
    transform: translate(-50%, 0);
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1b6ec2;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

code {
    color: #c02d76;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Operations calendar mode */
.utf-events-page--calendar {
    background: linear-gradient(180deg, rgba(7, 11, 15, 0.04), var(--utf-bg) 28rem);
    gap: 0;
    max-width: none;
    min-height: 100%;
    padding: 0 0 4rem;
}

.utf-events-toolbar--mode {
    border-bottom: 1px solid var(--utf-stroke);
}

.utf-events-toolbar--filters {
    padding-top: 0;
}

.utf-view-mode-switch {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(8.5rem, 1fr));
    min-width: min(100%, 20rem);
    overflow: hidden;
}

.utf-view-mode-switch__button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--utf-text-muted);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 850;
    gap: 0.55rem;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease;
}

.utf-view-mode-switch__button + .utf-view-mode-switch__button {
    border-left: 1px solid var(--utf-stroke);
}

.utf-view-mode-switch__button:hover,
.utf-view-mode-switch__button.active {
    color: var(--utf-text);
}

.utf-view-mode-switch__button.active {
    background: linear-gradient(180deg, var(--utf-gold-strong), var(--utf-gold));
    color: #101014;
}

.utf-view-mode-switch__button:focus-visible,
.utf-calendar-icon-button:focus-visible,
.utf-calendar-day__number:focus-visible,
.utf-calendar-event:focus-visible,
.utf-calendar-week-day:focus-visible,
.utf-calendar-agenda__select:focus-visible {
    outline: 2px solid rgba(186, 160, 90, 0.36);
    outline-offset: 2px;
}

.utf-events-toolbar__summary .utf-link-action {
    align-items: center;
    display: inline-flex;
    gap: 0.45rem;
}

.utf-calendar-workspace {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 4rem;
    width: 100%;
}

.utf-calendar-main {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.42fr);
}

.utf-calendar-panel,
.utf-calendar-detail {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.98), rgba(8, 13, 19, 0.98));
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    box-shadow: var(--utf-shadow-panel);
    min-width: 0;
    overflow: hidden;
}

.utf-calendar-monthbar {
    align-items: center;
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 1rem;
}

.utf-calendar-monthbar > div {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    min-width: 0;
}

.utf-calendar-monthbar strong {
    color: var(--utf-text);
    font-size: 1rem;
    font-weight: 850;
    text-transform: uppercase;
    white-space: nowrap;
}

.utf-calendar-monthbar > span {
    color: var(--utf-text-muted);
    font-size: 0.84rem;
    font-weight: 650;
}

.utf-calendar-icon-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text-muted);
    cursor: pointer;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
}

.utf-calendar-icon-button:hover {
    border-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.utf-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.utf-calendar-weekday {
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid var(--utf-stroke);
    border-right: 1px solid var(--utf-stroke);
    color: var(--utf-text-muted);
    font-size: 0.76rem;
    font-weight: 850;
    padding: 0.75rem 0.65rem;
    text-align: center;
    text-transform: uppercase;
}

.utf-calendar-weekday:nth-child(7) {
    border-right: 0;
}

.utf-calendar-day {
    background: rgba(255, 255, 255, 0.018);
    border-bottom: 1px solid var(--utf-stroke);
    border-right: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.45rem;
    grid-template-rows: max-content minmax(0, 1fr);
    min-height: 7.4rem;
    min-width: 0;
    padding: 0.55rem;
}

.utf-calendar-day:nth-child(7n) {
    border-right: 0;
}

.utf-calendar-day--outside {
    background: rgba(255, 255, 255, 0.008);
    color: var(--utf-text-subtle);
}

.utf-calendar-day--today {
    box-shadow: inset 0 2px 0 var(--utf-info);
}

.utf-calendar-day--selected {
    background: linear-gradient(180deg, rgba(186, 160, 90, 0.14), rgba(186, 160, 90, 0.035));
    box-shadow: inset 0 0 0 1px rgba(186, 160, 90, 0.56);
}

.utf-calendar-day__number {
    background: transparent;
    border: 0;
    color: var(--utf-text);
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 750;
    justify-self: start;
    line-height: 1;
    padding: 0;
}

.utf-calendar-day--outside .utf-calendar-day__number {
    color: var(--utf-text-subtle);
}

.utf-calendar-day__events {
    align-content: start;
    display: grid;
    gap: 0.38rem;
    min-width: 0;
}

.utf-calendar-event {
    align-items: center;
    background: rgba(186, 160, 90, 0.11);
    border: 1px solid rgba(186, 160, 90, 0.26);
    border-left: 3px solid var(--utf-gold);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 0.25rem;
    min-height: 30px;
    min-width: 0;
    padding: 0.32rem 0.45rem;
    text-align: left;
}

.utf-calendar-event span {
    color: var(--utf-gold-strong);
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1;
}

.utf-calendar-event strong {
    color: var(--utf-text);
    font-size: 0.77rem;
    font-weight: 750;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.utf-calendar-event:hover,
.utf-calendar-event--selected {
    border-color: var(--utf-gold);
    box-shadow: 0 0 0 1px rgba(186, 160, 90, 0.18);
}

.utf-calendar-event--attention {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.28);
    border-left-color: var(--utf-warning);
}

.utf-calendar-event--attention span {
    color: var(--utf-warning);
}

.utf-calendar-day__more {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 750;
}

.utf-calendar-week-strip,
.utf-calendar-month-overview,
.utf-calendar-agenda {
    display: none;
}

.utf-calendar-detail {
    display: grid;
    gap: 1.1rem;
    padding: 1.25rem;
    position: sticky;
    top: 88px;
}

.utf-calendar-detail__header {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.utf-calendar-detail__header > span,
.utf-calendar-detail__empty > span {
    color: var(--utf-gold-strong);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-calendar-detail h2,
.utf-calendar-detail__empty h2 {
    color: var(--utf-text);
    font-size: 2rem;
    font-weight: 850;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.utf-calendar-detail p,
.utf-calendar-detail__empty p {
    color: var(--utf-text-muted);
    line-height: 1.6;
    margin: 0;
}

.utf-calendar-detail__facts {
    border-bottom: 1px solid var(--utf-stroke);
    border-top: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0.5rem 0;
}

.utf-calendar-detail__facts div {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(6rem, 0.36fr) minmax(0, 1fr);
    padding: 0.42rem 0;
}

.utf-calendar-detail__facts dt,
.utf-calendar-detail__progress span:first-child {
    color: var(--utf-text-subtle);
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.utf-calendar-detail__facts dd {
    color: var(--utf-text);
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.utf-calendar-detail__progress {
    display: grid;
    gap: 0.75rem;
}

.utf-calendar-detail__progress > div:first-child,
.utf-calendar-detail__progress > div:last-child {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.utf-calendar-detail__progress strong {
    color: var(--utf-text);
}

.utf-calendar-detail__progress > div:last-child > span:last-child {
    color: var(--utf-text-muted);
    font-size: 0.84rem;
    font-weight: 650;
    text-transform: uppercase;
}

.utf-calendar-detail .utf-button {
    width: 100%;
}

.utf-calendar-detail__empty {
    display: grid;
    gap: 1rem;
}

.utf-events-page--calendar .utf-state-panel {
    margin: 0 auto 1rem;
    max-width: calc(1440px - 8rem);
    width: calc(100% - 8rem);
}

@media (max-width: 1180px) {
    .utf-calendar-workspace {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .utf-calendar-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .utf-calendar-detail {
        position: static;
    }
}

@media (max-width: 900px) {
    .utf-events-toolbar--mode {
        align-items: stretch;
        flex-direction: column;
    }

    .utf-view-mode-switch {
        width: 100%;
    }

    .utf-calendar-workspace {
        padding: 0 1.25rem 2rem;
    }

    .utf-calendar-monthbar {
        align-items: stretch;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .utf-calendar-monthbar > div {
        justify-content: space-between;
        width: 100%;
    }

    .utf-calendar-grid,
    .utf-calendar-detail {
        display: none;
    }

    .utf-calendar-week-strip {
        border-bottom: 1px solid var(--utf-stroke);
        display: grid;
        gap: 0.55rem;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        padding: 0.9rem;
    }

    .utf-calendar-week-day {
        align-items: center;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--utf-stroke);
        border-radius: var(--utf-radius-sm);
        color: var(--utf-text-muted);
        cursor: pointer;
        display: grid;
        font: inherit;
        gap: 0.28rem;
        min-height: 68px;
        min-width: 0;
        padding: 0.5rem 0.2rem;
        position: relative;
        text-align: center;
    }

    .utf-calendar-week-day span {
        font-size: 0.68rem;
        font-weight: 850;
        text-transform: uppercase;
    }

    .utf-calendar-week-day strong {
        color: var(--utf-text);
        font-size: 1.25rem;
        line-height: 1;
    }

    .utf-calendar-week-day.active {
        background: linear-gradient(180deg, var(--utf-gold-strong), var(--utf-gold));
        border-color: var(--utf-gold-strong);
        color: #101014;
    }

    .utf-calendar-week-day.active strong,
    .utf-calendar-week-day.active span {
        color: #101014;
    }

    .utf-calendar-week-day--has-events::after {
        background: var(--utf-gold);
        border-radius: 999px;
        bottom: 0.38rem;
        content: "";
        height: 0.28rem;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 0.28rem;
    }

    .utf-calendar-week-day.active::after {
        background: #101014;
    }

    .utf-calendar-month-overview {
        align-items: center;
        border-bottom: 1px solid var(--utf-stroke);
        color: var(--utf-text-muted);
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        min-height: 56px;
        padding: 0 0.95rem;
    }

    .utf-calendar-month-overview span {
        align-items: center;
        color: var(--utf-text);
        display: inline-flex;
        font-size: 0.88rem;
        font-weight: 850;
        gap: 0.55rem;
        text-transform: uppercase;
    }

    .utf-calendar-month-overview strong {
        color: var(--utf-text-muted);
        font-size: 0.82rem;
        font-weight: 650;
    }

    .utf-calendar-agenda {
        display: grid;
        gap: 1rem;
        padding: 1rem 0.9rem 1.1rem;
    }

    .utf-calendar-empty {
        color: var(--utf-text-muted);
        padding: 1rem 0;
    }

    .utf-calendar-agenda__group {
        display: grid;
        gap: 0.75rem;
    }

    .utf-calendar-agenda__group h2 {
        align-items: center;
        color: var(--utf-gold-strong);
        display: flex;
        font-size: 0.86rem;
        font-weight: 850;
        gap: 0.75rem;
        margin: 0;
        text-transform: uppercase;
    }

    .utf-calendar-agenda__group h2::after {
        background: var(--utf-stroke);
        content: "";
        flex: 1 1 auto;
        height: 1px;
    }

    .utf-calendar-agenda__group > div {
        display: grid;
        gap: 0.75rem;
    }

    .utf-calendar-agenda__item {
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--utf-stroke);
        border-left: 4px solid var(--utf-gold);
        border-radius: var(--utf-radius-md);
        display: grid;
        gap: 0.8rem;
        padding: 1rem;
    }

    .utf-calendar-agenda__item.active {
        border-color: var(--utf-gold);
        box-shadow: 0 0 0 1px rgba(186, 160, 90, 0.22);
    }

    .utf-calendar-agenda__item--attention {
        border-left-color: var(--utf-warning);
    }

    .utf-calendar-agenda__select {
        background: transparent;
        border: 0;
        color: var(--utf-text);
        cursor: pointer;
        display: grid;
        font: inherit;
        gap: 0.35rem;
        padding: 0;
        text-align: left;
    }

    .utf-calendar-agenda__select span {
        color: var(--utf-text-muted);
        font-size: 0.9rem;
        font-weight: 750;
    }

    .utf-calendar-agenda__select strong {
        color: var(--utf-text);
        font-size: 1.25rem;
        font-weight: 850;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .utf-calendar-agenda__meta {
        display: grid;
        gap: 0.55rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .utf-calendar-agenda__meta span {
        align-items: center;
        color: var(--utf-text-muted);
        display: inline-flex;
        gap: 0.45rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .utf-calendar-agenda__progress {
        align-items: center;
        display: grid;
        gap: 0.65rem;
        grid-template-columns: max-content minmax(0, 1fr) max-content;
    }

    .utf-calendar-agenda__progress strong {
        color: var(--utf-text);
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .utf-calendar-agenda__item .utf-button {
        width: 100%;
    }

    .utf-events-page--calendar .utf-state-panel {
        max-width: calc(100% - 2.5rem);
        width: calc(100% - 2.5rem);
    }
}

@media (max-width: 620px) {
    .utf-view-mode-switch {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .utf-view-mode-switch__button {
        font-size: 0.82rem;
        padding: 0 0.65rem;
    }

    .utf-calendar-week-strip {
        gap: 0.4rem;
        padding: 0.75rem;
    }

    .utf-calendar-week-day {
        min-height: 62px;
    }

    .utf-calendar-week-day strong {
        font-size: 1.05rem;
    }

    .utf-calendar-month-overview {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
        justify-content: center;
        padding: 0.8rem 0.95rem;
    }

    .utf-calendar-agenda__meta,
    .utf-calendar-agenda__progress {
        grid-template-columns: 1fr;
    }

    .utf-calendar-agenda__progress .utf-status {
        justify-self: start;
    }
}

.utf-calendar-workspace--skeleton {
    pointer-events: none;
}

.utf-calendar-panel--skeleton,
.utf-calendar-detail--skeleton {
    border-color: rgba(255, 255, 255, 0.16);
}

.utf-calendar-monthbar--skeleton .utf-skeleton--calendar-heading {
    height: 1.15rem;
    width: 11rem;
}

.utf-skeleton--calendar-icon {
    border-radius: var(--utf-radius-sm);
    height: 36px;
    width: 36px;
}

.utf-skeleton--calendar-summary {
    height: 1rem;
    width: 9rem;
}

.utf-calendar-grid--skeleton .utf-calendar-day {
    min-height: 7.4rem;
}

.utf-calendar-day--skeleton .utf-calendar-day__events {
    padding-top: 0.2rem;
}

.utf-skeleton--calendar-day-number {
    border-radius: 999px;
    height: 1.45rem;
    width: 1.45rem;
}

.utf-skeleton--calendar-event {
    border-left: 3px solid rgba(186, 160, 90, 0.44);
    height: 2.15rem;
    width: 100%;
}

.utf-skeleton--calendar-event-short {
    width: 74%;
}

.utf-calendar-detail--skeleton {
    align-self: start;
}

.utf-skeleton--calendar-detail-kicker {
    height: 1rem;
    width: 8rem;
}

.utf-skeleton--calendar-detail-title {
    height: 4.1rem;
    width: min(100%, 18rem);
}

.utf-skeleton--calendar-detail-label {
    height: 0.8rem;
    width: 4.4rem;
}

.utf-skeleton--calendar-detail-value {
    height: 1rem;
    width: 100%;
}

.utf-skeleton--calendar-detail-line {
    height: 1rem;
    width: 100%;
}

.utf-skeleton--calendar-detail-line-short {
    width: 72%;
}

.utf-skeleton--calendar-weekday {
    height: 0.75rem;
    justify-self: center;
    width: 2rem;
}

.utf-skeleton--calendar-weekdate {
    border-radius: 999px;
    height: 1.35rem;
    justify-self: center;
    width: 1.35rem;
}

.utf-skeleton--calendar-overview {
    height: 1rem;
    width: 10rem;
}

.utf-calendar-agenda__item--skeleton {
    pointer-events: none;
}

.utf-skeleton--calendar-agenda-date {
    height: 0.9rem;
    width: 9rem;
}

.utf-skeleton--calendar-agenda-time {
    height: 0.95rem;
    width: 4.8rem;
}

.utf-skeleton--calendar-agenda-title {
    height: 1.45rem;
    width: 100%;
}

@media (max-width: 900px) {
    .utf-calendar-workspace--skeleton .utf-calendar-week-strip {
        display: grid;
    }

    .utf-calendar-workspace--skeleton .utf-calendar-month-overview {
        display: flex;
    }

    .utf-calendar-workspace--skeleton .utf-calendar-agenda {
        display: grid;
    }
}

@media (max-width: 620px) {
    .utf-skeleton--calendar-summary {
        width: 7rem;
    }

    .utf-skeleton--calendar-overview {
        width: 8rem;
    }

    .utf-skeleton--calendar-weekday {
        width: 1.6rem;
    }

    .utf-skeleton--calendar-weekdate {
        height: 1.1rem;
        width: 1.1rem;
    }
}

.server-command-page {
    color: var(--utf-text);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-command-header-meta,
.server-counts {
    color: var(--utf-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.84rem;
    gap: 0.75rem;
}

.server-fleet-workspace,
.server-detail-frame,
.server-form-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    padding: 1rem;
}

.server-fleet-toolbar,
.server-selected-summary,
.server-file-heading {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.server-fleet-toolbar {
    align-items: flex-end;
}

.server-fleet-toolbar__links,
.server-row-actions,
.server-action-row,
.server-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.server-table-shell {
    min-width: 0;
    overflow-x: auto;
}

.server-fleet-table,
.server-detail-table {
    min-width: 880px;
}

.server-title-cell,
.server-job-cell,
.server-selected-summary > div,
.server-section-heading,
.server-log-row,
.server-card-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.server-title-cell strong,
.server-selected-summary strong,
.server-card-row strong {
    color: var(--utf-text);
    font-weight: 700;
}

.server-title-cell span,
.server-selected-summary span,
.server-section-heading p,
.server-card-row span,
.server-log-row span,
.server-log-row p,
.server-field small,
.server-file-row span,
.muted {
    color: var(--utf-text-muted);
}

.server-selected-summary dl {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    margin: 0;
    min-width: min(100%, 560px);
}

.server-selected-summary dt,
.server-meta-grid dt {
    color: var(--utf-text-subtle);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.server-selected-summary dd,
.server-meta-grid dd {
    color: var(--utf-text);
    margin: 0;
    overflow-wrap: anywhere;
}

.server-detail-tabs {
    border-bottom: 1px solid var(--utf-stroke);
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
}

.server-detail-tab {
    border-bottom: 2px solid transparent;
    color: var(--utf-text-muted);
    font-size: 0.9rem;
    font-weight: 650;
    padding: 0.85rem 0.75rem;
    text-decoration: none;
    white-space: nowrap;
}

.server-detail-tab:hover,
.server-detail-tab.active {
    border-bottom-color: var(--utf-gold);
    color: var(--utf-gold-strong);
}

.server-detail-tab--danger,
.server-detail-tab--danger:hover,
.server-detail-tab--danger.active {
    color: var(--utf-danger);
}

.server-section-grid,
.server-create-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.server-section-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-subpanel,
.server-action-panel,
.server-danger-panel,
.server-result-panel {
    background: color-mix(in srgb, var(--utf-surface) 86%, black);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    padding: 1rem;
}

.server-cloud-planning-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-cloud-planning-panel .server-form-grid,
.server-cloud-planning-panel .server-action-row,
.server-cloud-planning-panel .server-result-panel {
    margin-top: 0;
}

.server-cloud-policy-summary {
    border-block: 1px solid var(--utf-stroke);
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0.85rem;
}

.server-cloud-policy-summary > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.server-cloud-policy-summary span {
    color: var(--utf-text-subtle);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.server-cloud-policy-summary strong {
    color: var(--utf-text);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.server-cloud-policy-summary small,
.server-field-hint {
    color: var(--utf-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}

.server-danger-panel {
    border-color: rgba(239, 68, 68, 0.46);
}

.server-section-heading h2 {
    color: var(--utf-text);
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
}

.server-section-heading p {
    font-size: 0.86rem;
    margin: 0;
}

.server-meta-grid {
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: max-content minmax(0, 1fr);
    margin: 1rem 0 0;
}

.server-route-grid,
.server-action-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.server-form-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.server-form-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.server-form-grid--ports {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.server-field,
.server-check-field {
    color: var(--utf-text);
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    font-weight: 650;
    gap: 0.4rem;
    min-width: 0;
}

.server-check-field {
    align-items: center;
    flex-direction: row;
}

.server-field input,
.server-field select {
    background: var(--utf-surface-2);
    border: 1px solid var(--utf-stroke-strong);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-text);
    min-height: 2.35rem;
    padding: 0.45rem 0.6rem;
}

.server-field input:focus,
.server-field select:focus {
    border-color: var(--utf-gold);
    outline: 2px solid var(--utf-gold-muted);
}

.server-field span {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.server-field span strong {
    background: var(--utf-gold-muted);
    border: 1px solid var(--utf-gold);
    border-radius: var(--utf-radius-sm);
    color: var(--utf-gold-strong);
    font-size: 0.68rem;
    padding: 0.05rem 0.35rem;
    text-transform: uppercase;
}

.server-field-error {
    color: var(--utf-danger) !important;
}

.server-validation-list {
    margin: 0.45rem 0 0;
    padding-left: 1.15rem;
}

.server-validation-list li + li {
    margin-top: 0.25rem;
}

.server-config-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.server-sticky-actions {
    background: var(--utf-surface-glass);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    bottom: 1rem;
    padding: 0.75rem;
    position: sticky;
}

.server-log-list,
.server-card-list,
.server-file-list,
.server-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
}

.server-log-row,
.server-card-row,
.server-file-row,
.server-timeline-row {
    border-top: 1px solid var(--utf-stroke);
    padding-top: 0.65rem;
}

.server-file-row,
.server-timeline-row {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.server-file-row > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.server-result-panel {
    margin-top: 1rem;
}

.server-success {
    border-color: rgba(34, 197, 94, 0.42);
}

@media (max-width: 1120px) {
    .server-section-grid,
    .server-create-grid,
    .server-form-grid,
    .server-config-grid,
    .server-form-grid--ports,
    .server-route-grid,
    .server-action-grid {
        grid-template-columns: 1fr;
    }

    .server-fleet-toolbar,
    .server-selected-summary,
    .server-file-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .server-selected-summary dl {
        grid-template-columns: 1fr;
    }

    .server-cloud-policy-summary {
        grid-template-columns: 1fr;
    }
}

.site-image-editor-page {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-image-group-toolbar {
    flex-wrap: wrap;
}

.site-image-settings-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-image-setting-card {
    background: var(--utf-surface);
    border: 1px solid var(--utf-stroke);
    border-radius: var(--utf-radius-md);
    display: grid;
    grid-template-rows: 180px auto;
    min-width: 0;
    overflow: hidden;
}

.site-image-setting-card__preview {
    background-color: var(--utf-surface-muted);
    background-position: center;
    background-size: cover;
    min-height: 180px;
}

.site-image-setting-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
    padding: 1rem;
}

.site-image-setting-card__body h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 0.15rem 0 0;
}

.site-image-setting-card__body p {
    color: var(--utf-muted);
    margin: 0.35rem 0 0;
}
