@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&display=swap");

:root {
  --bg: #140c08;
  --bg-soft: #1f140e;
  --surface: #22170f;
  --surface-2: #2a1d12;
  --text: #f6ebdb;
  --muted: #cdb79a;
  --gold: #c79b4d;
  --gold-soft: #e2c67a;
  --violet: #6f5774;
  --border: rgba(231, 198, 122, 0.16);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  --radius: 16px;
  --brand-text: #fff9ed;
}

body[data-theme="sand-1"] {
  --bg: #f2e2c0;
  --bg-soft: #e6d2ab;
  --panel: rgba(255, 248, 233, 0.88);
  --panel-strong: #f8ead0;
  --surface: #f7edde;
  --surface-2: #e5d4b5;
  --text: #3d2b1e;
  --muted: #7a634a;
  --gold: #c79b4d;
  --gold-soft: #d9b97d;
  --violet: #8b6a54;
  --border: rgba(125, 94, 61, 0.25);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  --brand-text: #4b321c;
}

body[data-theme="sand-2"] {
  --bg: #1b1209;
  --bg-soft: #2a1b0e;
  --panel: rgba(45, 29, 14, 0.9);
  --panel-strong: #372313;
  --surface: #332111;
  --surface-2: #442d16;
  --text: #faedd8;
  --muted: #d8bf98;
  --gold: #cfa45f;
  --gold-soft: #f0d49b;
  --violet: #9d7959;
  --border: rgba(240, 212, 155, 0.22);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  --brand-text: #fff9ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), #0d0805 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px 32px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(20, 12, 8, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: url("/assets/images/order-of-jedi-icon-clean.png") center / cover no-repeat;
  position: relative;
  flex: 0 0 48px;
}
.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand strong {
  display: block;
  color: var(--brand-text);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 3px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
}
.nav a.active, .nav a:hover {
  color: var(--text);
  background: rgba(199, 155, 77, 0.14);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  cursor: pointer;
}
.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1f140d;
}
.button.secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.theme-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.theme-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.theme-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.theme-button:hover,
.theme-button.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .theme-controls { width: 100%; justify-content: flex-end; }
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) 320px;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.content-area, .sidebar-card, .forum-block, .welcome {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface), var(--bg-soft));
  box-shadow: var(--shadow);
}

.welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.welcome h1 {
  margin: 4px 0 8px;
  font-size: 1.4rem;
}
.welcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin: 0 0 6px;
}
.welcome-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.forum-block { padding: 10px 12px; }
.forum-category { margin-bottom: 12px; }
.forum-category:last-child { margin-bottom: 0; }
.forum-category h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin: 8px 0 10px;
  padding: 0 6px;
}
.forum-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 120px minmax(0, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
  border-top: 1px solid var(--border);
}
.forum-row:first-of-type { border-top: 0; }
.forum-row:hover { background: rgba(255,255,255,0.03); }
.forum-main strong, .forum-last strong { display: block; margin-bottom: 4px; }
.forum-main span, .forum-last span, .forum-meta span, .muted, .list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.forum-meta { display: grid; gap: 4px; }
.forum-last { display: grid; gap: 4px; }

.sidebar { display: grid; gap: 16px; }
.sidebar-card { padding: 16px; }
.sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.login-form { display: grid; gap: 10px; }
.login-form label { display: grid; gap: 6px; font-size: 0.92rem; }
.login-form input,
.login-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}
.login-form textarea { min-height: 110px; resize: vertical; }
.link-row { display: inline-block; margin-top: 10px; color: var(--gold-soft); }
.status {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.status-success { background: rgba(92, 138, 93, 0.16); color: #d7e9d1; border: 1px solid rgba(92,138,93,0.25); }
.status-error { background: rgba(150, 76, 76, 0.16); color: #f2c8c8; border: 1px solid rgba(150,76,76,0.25); }

.application-layout {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.application-page .application-layout { margin-top: 9rem; }
.application-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(203, 169, 102, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}
.application-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -115px;
  border: 1px solid rgba(203, 169, 102, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(203, 169, 102, 0.035), 0 0 0 56px rgba(203, 169, 102, 0.02);
}
.application-hero h1 {
  margin: 6px 0 12px;
  font-size: clamp(1rem, 4vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.application-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  line-height: 1.7;
}
.application-hero .application-motto {
  margin-top: 18px !important;
  color: var(--gold-soft) !important;
  font-family: "Cinzel", Georgia, serif;
}
.application-status {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
}
.application-status ul { margin: 8px 0 0; padding-left: 20px; }
.application-status li + li { margin-top: 4px; }
.application-form { display: grid; gap: 20px; }
.application-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.application-section {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.025);
  box-shadow: 0 16px 44px rgba(0,0,0,0.16);
}
.application-section-heading {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.application-section-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(203, 169, 102, 0.35);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
}
.application-section-heading h2 { margin: 0 0 5px; font-size: 1.35rem; }
.application-section-heading p { margin: 0; color: var(--muted); line-height: 1.5; }
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.application-grid-single { grid-template-columns: 1fr; }
.application-field { display: grid; gap: 7px; align-content: start; }
.application-field-wide { grid-column: 1 / -1; }
.application-field > span,
.application-choice legend { font-weight: 650; line-height: 1.45; }
.application-field b,
.application-choice b,
.application-consent b,
.application-submit b { color: var(--gold-soft); }
.application-field input,
.application-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.16);
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.application-field input:focus,
.application-field textarea:focus {
  outline: none;
  border-color: rgba(203, 169, 102, 0.75);
  background: rgba(0,0,0,0.24);
  box-shadow: 0 0 0 3px rgba(203, 169, 102, 0.1);
}
.application-field input[type="file"] { padding: 10px; }
.application-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(203, 169, 102, 0.17);
  color: var(--gold-soft);
  cursor: pointer;
}
.application-field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.application-field small {
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  font-size: 0.94rem;
  line-height: 1.55;
}
.application-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.application-choice legend { width: 100%; margin-bottom: 8px; }
.application-choice label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 88px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  cursor: pointer;
}
.application-choice input,
.application-consent input { accent-color: #cba966; }
.guardian-template {
  margin: 6px 0 20px;
  padding: 16px 18px;
  border-left: 3px solid rgba(203, 169, 102, 0.55);
  border-radius: 0 12px 12px 0;
  background: rgba(203, 169, 102, 0.07);
}
.guardian-template p {
  margin: 8px 0 0;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  line-height: 1.65;
}
.application-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  line-height: 1.55;
}
.application-consent input { width: 18px; height: 18px; margin-top: 3px; }
.application-submit {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 4px 2px 12px;
}
.application-submit p { margin: 0; color: var(--muted); }
.application-submit .button { min-width: 230px; justify-content: center; }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list li { padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.list li:last-child { border-bottom: 0; padding-bottom: 0; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 4px 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer .theme-controls { margin-left: auto; }
.footer .theme-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
}
.footer .theme-picker select {
  min-width: 140px;
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
}
.footer .theme-picker select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle { display: none; }

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

@media (max-width: 760px) {
  .application-page .application-layout { margin-top: 8.5rem; }
  .application-grid { grid-template-columns: 1fr; }
  .application-field-wide { grid-column: auto; }
  .application-section-heading { grid-template-columns: 36px 1fr; }
  .application-section-heading > span { width: 34px; height: 34px; }
  .application-submit { align-items: stretch; flex-direction: column; }
  .application-submit .button { width: 100%; min-width: 0; }
  .shell { padding: 12px 12px 24px; }
  .topbar { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: var(--text); }
  .nav { display: none; width: 100%; flex-direction: column; padding-top: 8px; }
  .nav.is-open { display: flex; }
  .topbar-actions { width: 100%; justify-content: flex-end; }
  .welcome { flex-direction: column; align-items: flex-start; }
  .forum-row { grid-template-columns: 1fr; }
  .forum-meta, .forum-last { display: flex; flex-wrap: wrap; gap: 8px; }
  .footer { flex-direction: column; }
  .footer .theme-controls { margin-left: 0; justify-content: flex-start; }
  .footer .theme-picker { margin-left: 0; }
}

/* Sichere Anmeldung, Profil und Administration */
.account-nav {
  margin-left: auto;
}

.account-identity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 210px;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
}

.account-identity img,
.avatar-fallback {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  color: #24180e;
  background: linear-gradient(135deg, var(--gold-soft), #9f829d);
  font-weight: 800;
}

.button.compact {
  padding: 8px 12px;
  font-size: 0.88rem;
}

.auth-page,
.account-page,
.admin-page {
  margin-top: 28px;
}

.auth-page {
  display: grid;
  place-items: start center;
  min-height: 58vh;
  padding: 34px 0;
}

.auth-card,
.settings-card,
.account-hero {
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 90% 5%, rgba(199, 155, 77, 0.12), transparent 30%),
    linear-gradient(145deg, var(--surface), var(--bg-soft));
  box-shadow: var(--shadow);
}

.auth-card {
  width: min(590px, 100%);
  padding: clamp(24px, 5vw, 44px);
  border-radius: 22px;
}

.auth-card h1,
.settings-card h2,
.account-hero h1 {
  margin: 4px 0 10px;
  font-family: "Cinzel", Georgia, serif;
}

.auth-card .login-form {
  gap: 15px;
  margin-top: 22px;
}

.login-form label > span {
  font-weight: 700;
}

.login-form input,
.login-form textarea,
.login-form select,
.copy-link-row input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.16);
  font: inherit;
}

.login-form input:focus,
.login-form textarea:focus,
.login-form select:focus,
.copy-link-row input:focus {
  outline: 2px solid color-mix(in srgb, var(--gold) 65%, transparent);
  outline-offset: 2px;
}

.login-form input:disabled {
  color: var(--muted);
  opacity: 0.85;
}

.login-form input[type="file"] {
  padding: 8px;
}

.login-form input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(199, 155, 77, 0.16);
  cursor: pointer;
}

.login-form small,
.small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.auth-links a,
.text-button {
  color: var(--gold-soft);
  font-weight: 700;
}

.status {
  padding: 13px 15px;
  margin: 16px 0;
  line-height: 1.55;
}

.status ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.status-warning {
  color: #f2d7a5;
  background: rgba(166, 116, 45, 0.18);
  border: 1px solid rgba(222, 177, 99, 0.32);
}

.account-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 22px;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(226, 198, 122, 0.26);
  border-radius: 50%;
  color: #26180f;
  background: linear-gradient(135deg, var(--gold-soft), #9f829d);
  font-size: 1.1rem;
  font-weight: 800;
}

.profile-avatar.large {
  width: 122px;
  height: 138px;
  border-radius: 14px;
  font-size: 2.6rem;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-status {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--text);
  line-height: 1.6;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.settings-card {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
}

.settings-card .login-form {
  gap: 15px;
  margin-top: 20px;
}

.admin-hero {
  justify-content: space-between;
}

.admin-count {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(199, 155, 77, 0.08);
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.admin-create-card {
  position: sticky;
  top: 110px;
}

.card-heading-row,
.copy-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.copy-link-row {
  margin-top: 12px;
}

.copy-link-row input {
  min-width: 0;
  color: var(--muted);
}

.user-list {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid var(--border);
}

.user-row {
  display: grid;
  grid-template-columns: 50px minmax(180px, 1fr) auto minmax(145px, auto);
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.user-details {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.user-details strong,
.user-details span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-details span {
  color: var(--muted);
  font-size: 0.82rem;
}

.status-badge {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-active {
  color: #cde9cb;
  background: rgba(75, 139, 84, 0.18);
}

.status-invited {
  color: #f1d59f;
  background: rgba(166, 116, 45, 0.18);
}

.status-disabled {
  color: #e9bcbc;
  background: rgba(150, 76, 76, 0.18);
}

.user-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.text-button {
  border: 0;
  padding: 2px;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button.danger {
  color: #df9d9d;
}

@media (max-width: 1050px) {
  .account-nav {
    display: none;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-create-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .auth-page,
  .account-page,
  .admin-page {
    margin-top: 14px;
  }

  .auth-page {
    padding-top: 8px;
  }

  .topbar .account-identity span:last-child {
    display: none;
  }

  .account-hero,
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .card-heading-row,
  .copy-link-row {
    align-items: stretch;
    flex-direction: column;
  }

  .user-row {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .user-actions {
    grid-column: 2 / -1;
    justify-items: start;
  }
}

@media (max-width: 480px) {
  .topbar-actions .button.compact {
    display: none;
  }

  .auth-card,
  .settings-card {
    padding: 20px 16px;
  }

  .profile-avatar.large {
    width: 100px;
    height: 115px;
  }

  .user-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .status-badge,
  .user-actions {
    grid-column: 2;
    justify-self: start;
  }
}
