:root {
  --ink: #102027;
  --muted: #5c6f76;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(255, 255, 255, 0.72);
  --primary: #007f73;
  --primary-dark: #005f58;
  --accent: #f2b84b;
  --danger: #b42318;
  --success: #087443;
  --shadow: 0 24px 80px rgba(12, 46, 54, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 18%, rgba(242, 184, 75, 0.34), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(0, 127, 115, 0.26), transparent 26rem),
    linear-gradient(135deg, #edf8f6 0%, #f8fbfc 48%, #e8f4f1 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-card {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
}

.card-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.card-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.action-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.action-button {
  min-width: 150px;
  padding: 0 18px;
  white-space: nowrap;
}

.form-stack,
.person-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

label:has(> input[required]) > span:first-child::after,
label:has(> select[required]) > span:first-child::after,
label:has(> textarea[required]) > span:first-child::after {
  margin-left: 4px;
  color: var(--danger);
  content: "*";
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 39, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 127, 115, 0.14);
}

.animated-button,
.ghost-button,
.mini-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.animated-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 127, 115, 0.28);
}

.animated-button::after {
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left 420ms ease;
}

.animated-button:hover,
.ghost-button:hover,
.mini-button:hover {
  transform: translateY(-2px);
}

.animated-button:hover::after {
  left: 130%;
}

.animated-button:active,
.ghost-button:active,
.mini-button:active {
  transform: translateY(0) scale(0.98);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
}

.topbar h1 {
  font-size: 2rem;
}

.login-page {
  background: #07111f;
}

.login-experience {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.22), transparent 30rem),
    radial-gradient(circle at 82% 76%, rgba(14, 165, 233, 0.12), transparent 34rem),
    linear-gradient(145deg, #07111f, #0b1f35 58%, #071827);
  color: #fff;
  isolation: isolate;
  padding: 38px;
}

.login-experience::before {
  position: absolute;
  inset: 7% 8%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(3, 12, 24, 0.34);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.28);
  content: "";
  animation: login-panel-arrive 700ms ease both;
}

.login-stage {
  display: grid;
  width: min(920px, 88vw);
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 54px;
}

.login-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  animation: login-copy-arrive 650ms 100ms ease both;
}

.logo-plate {
  display: flex;
  width: min(360px, 100%);
  min-height: 190px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.logo-plate img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.login-brand > p {
  margin: 26px 0 8px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-brand h1 {
  max-width: 430px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.login-brand > span {
  display: block;
  max-width: 430px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
  text-align: center;
}

.login-glass {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 35, 84, 0.34);
  padding: 34px;
  backdrop-filter: blur(22px) saturate(140%);
  animation: login-card-arrive 700ms 180ms ease both;
}

.login-card-heading h2,
.login-card-heading p,
.login-card-heading span {
  margin: 0;
}

.login-card-heading h2 {
  margin-top: 7px;
  font-size: 1.7rem;
}

.login-card-heading > span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.login-kicker {
  color: #7dd3fc;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.login-form label {
  color: rgba(255, 255, 255, 0.88);
}

.login-form label > span::after {
  color: #7dd3fc !important;
}

.login-form input {
  min-height: 50px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: #143a59;
  box-shadow: 0 10px 30px rgba(0, 35, 84, 0.11);
}

.login-form input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.22), 0 15px 35px rgba(0, 35, 84, 0.18);
  transform: translateY(-1px);
}

.login-button {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #0284c7;
  box-shadow: 0 16px 35px rgba(2, 132, 199, 0.28);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.login-button::before {
  position: absolute;
  top: 0;
  left: -55%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 460ms ease;
}

.login-button:hover {
  background: #0ea5e9;
  box-shadow: 0 20px 42px rgba(14, 165, 233, 0.34);
  transform: translateY(-3px);
}

.login-button:hover::before {
  left: 120%;
}

.login-button:active {
  transform: translateY(0) scale(0.985);
}

.login-arrow {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.login-button:hover .login-arrow {
  transform: translateX(4px);
}

.login-security {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: center;
}

.login-footer {
  position: absolute;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.login-motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-ring,
.motion-line,
.motion-dash {
  position: absolute;
  display: block;
  border: 18px solid rgba(255, 255, 255, 0.12);
}

.motion-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border-right-color: #38bdf8;
  animation: login-spin 12s linear infinite;
}

.ring-one {
  top: 8%;
  left: 8%;
}

.ring-two {
  right: 7%;
  bottom: 8%;
  width: 210px;
  height: 210px;
  animation-direction: reverse;
  animation-duration: 16s;
}

.motion-line {
  width: 190px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transform: rotate(-38deg);
  animation: login-float 7s ease-in-out infinite;
}

.line-one {
  right: 13%;
  top: 18%;
}

.line-two {
  bottom: 13%;
  left: 10%;
  border-color: rgba(56, 189, 248, 0.18);
  animation-delay: -3s;
}

.motion-dash {
  width: 76px;
  height: 24px;
  border-width: 9px;
  border-color: rgba(255, 255, 255, 0.19);
  border-radius: 30px;
  animation: login-float 5s ease-in-out infinite;
}

.dash-one {
  top: 27%;
  left: 40%;
}

.dash-two {
  right: 29%;
  bottom: 19%;
  animation-delay: -2s;
}

@keyframes login-panel-arrive {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes login-copy-arrive {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes login-card-arrive {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes login-spin {
  to { transform: rotate(360deg); }
}

@keyframes login-float {
  0%, 100% { transform: translateY(0) rotate(-38deg); }
  50% { transform: translateY(-18px) rotate(-32deg); }
}

.topbar nav,
.nav-pages,
.nav-account {
  display: flex;
  align-items: center;
}

.topbar nav {
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.nav-shell {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-pages {
  gap: 10px;
  border-right: 1px solid rgba(16, 32, 39, 0.16);
  padding-right: 14px;
}

.nav-account {
  gap: 10px;
}

.theme-switcher {
  display: inline-flex;
  width: 46px;
  height: 46px;
  min-width: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  box-shadow: 0 8px 22px rgba(0, 48, 93, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-switcher:hover {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 11px 26px rgba(0, 48, 93, 0.24);
  transform: translateY(-2px) rotate(8deg);
}

.theme-switcher:active {
  transform: translateY(0) scale(0.95);
}

.ghost-button,
.mini-button {
  border: 1px solid rgba(16, 32, 39, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary-dark);
  padding: 0 16px;
}

.active-nav {
  background: rgba(0, 127, 115, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 127, 115, 0.16);
}

.mini-button {
  min-height: 36px;
  padding: 0 12px;
}

.danger-button {
  color: var(--danger);
}

button.danger-button {
  border: 1px solid rgba(196, 61, 50, 0.28);
  background: rgba(196, 61, 50, 0.1);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

button.danger-button:hover {
  border-color: rgba(196, 61, 50, 0.5);
  background: rgba(196, 61, 50, 0.18);
}

.app-shell {
  display: grid;
  gap: 24px;
  padding: 0 40px 40px;
}

.admin-home {
  display: grid;
  gap: 24px;
  min-height: 420px;
  align-content: center;
}

.admin-home-heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.admin-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-tile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 28px;
  min-height: 190px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(24px) saturate(150%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-tile:hover {
  border-color: rgba(0, 127, 115, 0.35);
  box-shadow: 0 28px 70px rgba(12, 46, 54, 0.22);
  transform: translateY(-4px);
}

.admin-tile:active {
  transform: translateY(0) scale(0.99);
}

.tile-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 127, 115, 0.13);
  color: var(--primary-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.create-user-tile .tile-mark {
  background: rgba(8, 116, 67, 0.14);
  color: var(--success);
}

.settings-tile .tile-mark {
  background: rgba(242, 184, 75, 0.24);
  color: #715000;
}

.history-tile .tile-mark {
  background: rgba(242, 184, 75, 0.22);
  color: #715000;
}

.bulk-tile .tile-mark {
  background: rgba(78, 91, 166, 0.13);
  color: #38458f;
}

.tile-copy {
  display: grid;
  gap: 8px;
}

.tile-copy strong {
  font-size: 1.18rem;
}

.tile-copy small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tile-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.admin-tile:hover .tile-arrow {
  transform: translateX(4px);
}

.form-card,
.list-card {
  min-width: 0;
  padding: 28px;
}

.person-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.transaction-count-note {
  display: grid;
  align-content: center;
  gap: 5px;
  grid-column: span 2;
  border: 1px solid rgba(0, 127, 115, 0.16);
  border-radius: 8px;
  background: rgba(0, 127, 115, 0.07);
  padding: 13px 16px;
}

.transaction-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.transaction-list-item {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  padding: 14px 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.transaction-list-item:hover {
  border-color: rgba(0, 127, 115, 0.34);
  transform: translateY(-2px);
}

.transaction-list-link {
  display: flex;
  min-width: 0;
  flex: 1;
  align-self: stretch;
  align-items: center;
}

.transaction-list-link > span:first-child {
  display: grid;
  gap: 5px;
}

.transaction-list-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-list-actions form {
  margin: 0;
}

.transaction-cancel-button {
  min-height: 36px;
  border: 1px solid rgba(255, 92, 82, 0.42);
  border-radius: 8px;
  background: rgba(180, 35, 24, 0.14);
  padding: 0 12px;
  color: #ff746b;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.transaction-cancel-button:hover {
  border-color: rgba(255, 92, 82, 0.72);
  background: rgba(180, 35, 24, 0.24);
}

.transaction-list small {
  color: var(--muted);
}

@media (max-width: 700px) {
  .transaction-list-item,
  .transaction-list-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .transaction-list-actions {
    width: 100%;
  }

  .transaction-list-actions form,
  .transaction-cancel-button {
    width: 100%;
  }
}

.bulk-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bulk-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.bulk-step h2 {
  margin: 0;
}

.bulk-step p {
  color: var(--muted);
  line-height: 1.55;
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 127, 115, 0.13);
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.bulk-upload-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.bulk-code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.bulk-code-grid div {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 14px;
}

.bulk-code-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.bulk-preview-wrap {
  margin-top: 22px;
}

.bulk-preview-table {
  min-width: 1320px;
}

.invalid-row {
  background: rgba(180, 35, 24, 0.07);
}

.status-ready {
  color: var(--success);
}

.status-error {
  color: var(--danger);
}

.row-errors {
  min-width: 230px;
  margin: 7px 0 0;
  padding-left: 18px;
  color: var(--danger);
  font-size: 0.78rem;
}

.bulk-shared-preview,
.bulk-record-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.bulk-record-preview,
.preview-section {
  border: 1px solid rgba(16, 32, 39, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  padding: 18px;
}

.bulk-record-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bulk-record-heading h3,
.preview-section h3,
.preview-section h4 {
  margin: 0;
}

.preview-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.preview-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.preview-field-grid div {
  display: grid;
  gap: 5px;
  min-width: 0;
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  padding: 8px 0;
}

.preview-field-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-field-grid strong {
  overflow-wrap: anywhere;
}

.generated-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.generated-summary div {
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  padding: 14px;
}

.generated-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-type-control {
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-type-control label {
  display: flex;
  min-height: 56px;
  align-items: center;
  border: 1px solid rgba(16, 32, 39, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 14px;
  cursor: pointer;
}

.payment-type-control input {
  width: 18px;
  margin: 0;
}

.conditional-form {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.conditional-placeholder {
  grid-column: 1 / -1;
  border: 1px solid rgba(242, 184, 75, 0.4);
  border-radius: 8px;
  background: rgba(242, 184, 75, 0.12);
  padding: 18px;
}

.conditional-placeholder h3,
.conditional-placeholder p {
  margin: 0;
}

.conditional-placeholder p {
  margin-top: 6px;
  color: var(--muted);
}

.party-form {
  margin-top: 26px;
}

.save-confirmation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(8, 116, 67, 0.24);
  border-radius: 8px;
  background: rgba(8, 116, 67, 0.09);
  margin-top: 22px;
  padding: 18px;
}

.save-confirmation > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.save-confirmation h3,
.save-confirmation p {
  margin: 0;
}

.save-confirmation p {
  margin-top: 5px;
  color: var(--muted);
}

.confirmation-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.confirmation-actions {
  display: flex;
  gap: 10px;
}

.confirmation-actions .animated-button,
.confirmation-actions .ghost-button {
  min-width: 130px;
  padding: 0 16px;
}

.transaction-parties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.party-panel {
  min-width: 0;
  border: 1px solid rgba(16, 32, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  padding: 20px;
}

.party-heading {
  border-bottom: 1px solid rgba(16, 32, 39, 0.1);
  padding-bottom: 16px;
}

.party-heading h3,
.section-divider h4,
.section-divider p {
  margin: 0;
}

.party-heading h3 {
  font-size: 1.3rem;
}

.card-header h2,
.party-heading h3 {
  overflow-wrap: anywhere;
}

.party-fields,
.person-party-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.person-party-fields {
  margin-top: 0;
}

.conditional-party-form[hidden] {
  display: none !important;
}

.conditional-party-form {
  --liquid-glass-bg: rgba(255, 255, 255, 0.16);
  --liquid-glass-highlight: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.15), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(130, 220, 255, 0.14), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 42%),
    var(--liquid-glass-bg);
  box-shadow:
    inset 1px 1px 1px var(--liquid-glass-highlight),
    inset -1px -1px 1px rgba(255, 255, 255, 0.08),
    0 18px 55px rgba(0, 30, 78, 0.24);
  padding: 30px;
  backdrop-filter: blur(7px) saturate(125%);
  isolation: isolate;
}

.conditional-party-form::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 44%);
  content: "";
  pointer-events: none;
}

.conditional-party-form > * {
  position: relative;
  z-index: 1;
}

.conditional-party-form input,
.conditional-party-form select,
.conditional-party-form textarea {
  background: rgba(255, 255, 255, 0.9);
}

.conditional-party-form input[readonly] {
  background: rgba(225, 242, 251, 0.82);
}

.conditional-party-form .section-divider {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 8px;
}

.conditional-party-form .section-divider::before {
  top: 2px;
}

.conditional-party-form .section-divider h4 {
  color: #fff;
  font-size: 1.25rem;
}

.conditional-party-form .section-divider p,
.conditional-party-form label,
.conditional-party-form .field-help {
  color: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .conditional-party-form {
  --liquid-glass-bg: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.82);
  color: #12334c;
  box-shadow: 0 20px 60px rgba(7, 81, 138, 0.13);
}

html[data-theme="light"] .conditional-party-form .section-divider h4,
html[data-theme="light"] .conditional-party-form .section-divider p,
html[data-theme="light"] .conditional-party-form label,
html[data-theme="light"] .conditional-party-form .field-help {
  color: #12334c;
}

html[data-theme="dark"] .conditional-party-form {
  --liquid-glass-bg: rgba(2, 28, 51, 0.44);
  --liquid-glass-highlight: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.director-section {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.director-section-heading,
.director-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.director-section-heading {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 24px;
}

.director-section-heading h4,
.director-section-heading p,
.director-card-heading p {
  margin: 0;
}

.director-section-heading h4 {
  color: #fff;
  font-size: 1.2rem;
}

.director-section-heading p,
.director-card-heading p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.director-add-button {
  min-width: 210px;
  min-height: 44px;
  padding: 0 18px;
}

.director-list {
  display: grid;
  gap: 18px;
}

.director-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(3, 67, 128, 0.2);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.18);
  padding: 20px;
}

.director-number {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.director-remove-button {
  min-height: 40px;
  color: #fff;
}

.director-remove-button[hidden] {
  display: none !important;
}

.director-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.director-field-grid .full-field {
  grid-column: 1 / -1;
}

html[data-theme="light"] .director-section-heading {
  border-top-color: rgba(7, 81, 138, 0.16);
}

html[data-theme="light"] .director-section-heading h4,
html[data-theme="light"] .director-number {
  color: #12334c;
}

html[data-theme="light"] .director-section-heading p,
html[data-theme="light"] .director-card-heading p {
  color: #526c7d;
}

html[data-theme="light"] .director-card {
  border-color: rgba(7, 120, 181, 0.16);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .director-remove-button {
  color: #12334c;
}

@media (max-width: 700px) {
  .director-section-heading,
  .director-card-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .director-add-button {
    width: 100%;
  }

  .director-field-grid {
    grid-template-columns: 1fr;
  }

  .director-field-grid .full-field {
    grid-column: auto;
  }
}

.full-field,
.section-divider {
  grid-column: 1 / -1;
}

.section-divider {
  border-top: 1px solid rgba(16, 32, 39, 0.1);
  padding-top: 16px;
}

.section-divider p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.to-account-note {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(0, 127, 115, 0.16);
  border-radius: 8px;
  background: rgba(0, 127, 115, 0.07);
  padding: 14px;
}

.to-account-note span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.party-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.party-actions .animated-button {
  min-width: 230px;
  padding: 0 22px;
}

.transaction-count-note span {
  color: var(--muted);
  font-size: 0.88rem;
}

.xml-structure {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.xml-structure span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  padding: 10px;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.wide {
  grid-column: span 2;
}

.form-section-title,
.profile-section-title {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(16, 32, 39, 0.12);
  padding-top: 20px;
}

.form-section-title h3,
.form-section-title p,
.profile-section-title h3 {
  margin: 0;
}

.form-section-title p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.password-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 18px;
  margin-top: 24px;
}

.messages {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.message {
  margin: 0;
  border-radius: 8px;
  padding: 11px 13px;
  font-weight: 700;
}

.message.error {
  background: rgba(180, 35, 24, 0.12);
  color: var(--danger);
}

.message.success {
  background: rgba(8, 116, 67, 0.12);
  color: var(--success);
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.management-table {
  min-width: 1080px;
}

.history-table {
  min-width: 1050px;
}

.history-table small {
  color: var(--muted);
}

.history-search-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: end;
  gap: 12px;
  margin: 20px 0 14px;
}

.history-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
}

.history-selection-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selection-column {
  width: 46px;
  text-align: center;
}

.selection-column input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

@media (max-width: 700px) {
  .history-search-form {
    grid-template-columns: 1fr;
  }

  .history-selection-bar,
  .history-selection-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.export-button {
  color: var(--success);
}

th,
td {
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  padding: 14px 16px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.empty {
  color: var(--muted);
  text-align: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.profile-grid div,
.empty-state {
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  padding: 16px;
}

.profile-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-grid strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.wide-info {
  grid-column: span 2;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 26px;
}

.empty-state h2,
.empty-state p {
  margin: 0;
}

.empty-state p {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill.active {
  background: rgba(8, 116, 67, 0.14);
  color: var(--success);
}

.status-pill.inactive {
  background: rgba(180, 35, 24, 0.13);
  color: var(--danger);
}

.status-pill.role-superadmin {
  background: rgba(242, 184, 75, 0.22);
  color: #715000;
}

.status-pill.role-user {
  background: rgba(0, 127, 115, 0.12);
  color: var(--primary-dark);
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.row-actions form {
  margin: 0;
}

.locked-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.reset-form {
  display: grid;
  grid-template-columns: minmax(220px, 420px) auto;
  align-items: end;
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .login-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(520px, 90vw);
  }

  .login-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .logo-plate {
    width: min(300px, 78vw);
  }

  .login-brand > p {
    margin-top: 18px;
  }

  .login-brand h1 {
    font-size: 2rem;
  }

  .login-brand > span {
    margin-top: 9px;
  }

  .person-grid,
  .profile-grid,
  .admin-tile-grid,
  .report-grid,
  .bulk-code-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transaction-count-note {
    grid-column: span 2;
  }

  .conditional-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transaction-parties {
    grid-template-columns: 1fr;
  }

  .xml-structure {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topbar,
  .app-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.backup-restore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.backup-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.restore-panel {
  border-color: rgba(255, 119, 119, 0.38);
}

.restore-backup-form {
  display: grid;
  width: 100%;
  gap: 18px;
}

.restore-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.restore-confirmation input {
  width: auto;
  margin-top: 4px;
}

@media (max-width: 800px) {
  .backup-restore-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .login-experience {
    align-items: start;
    padding: 24px 18px 62px;
  }

  .login-experience::before {
    inset: 14px;
  }

  .login-stage {
    width: 100%;
    gap: 20px;
  }

  .logo-plate {
    width: min(245px, 72vw);
  }

  .login-brand > p {
    margin-top: 12px;
  }

  .login-brand h1 {
    font-size: 1.65rem;
  }

  .login-brand > span {
    font-size: 0.88rem;
  }

  .login-glass {
    padding: 24px 20px;
  }

  .login-footer {
    bottom: 14px;
  }

  .ring-two {
    right: -80px;
  }

  .person-grid,
  .profile-grid,
  .admin-tile-grid,
  .report-grid,
  .bulk-step-grid,
  .bulk-code-grid,
  .wide,
  .wide-info {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .bulk-upload-form {
    grid-template-columns: 1fr;
  }

  .preview-two-column,
  .preview-field-grid {
    grid-template-columns: 1fr;
  }

  .transaction-count-note {
    grid-column: span 1;
  }

  .conditional-form,
  .payment-type-control,
  .generated-summary,
  .party-fields,
  .person-party-fields {
    grid-template-columns: 1fr;
  }

  .payment-type-control {
    grid-column: span 1;
  }

  .full-field,
  .section-divider {
    grid-column: span 1;
  }

  .party-panel {
    padding: 16px;
  }

  .party-actions .animated-button {
    width: 100%;
  }

  .save-confirmation,
  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .confirmation-actions .animated-button,
  .confirmation-actions .ghost-button {
    width: 100%;
  }

  .xml-structure {
    grid-template-columns: 1fr;
  }

  .admin-home {
    align-content: start;
  }

  .admin-tile {
    min-height: 150px;
  }

  .action-header {
    flex-direction: column;
  }

  .reset-form {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell,
  .nav-pages,
  .nav-account {
    align-items: stretch;
    width: 100%;
  }

  .nav-shell {
    flex-direction: column;
  }

  .nav-pages {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 32, 39, 0.16);
    flex-wrap: wrap;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .nav-account {
    justify-content: space-between;
  }
}

/* Final shared form layout and liquid-glass color rules */
body:not(.login-page) .person-grid,
body:not(.login-page) .report-grid,
body:not(.login-page) .password-grid,
body:not(.login-page) .reset-form,
body:not(.login-page) .conditional-form,
body:not(.login-page) .party-fields,
body:not(.login-page) .person-party-fields,
body:not(.login-page) .bulk-upload-form {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.login-page) .glass-card .card-header h2,
body:not(.login-page) .glass-card .card-header p,
body:not(.login-page) .glass-card label,
body:not(.login-page) .party-panel .party-heading h3,
body:not(.login-page) .party-panel .party-heading p {
  color: #fff;
}

body:not(.login-page) .person-grid,
body:not(.login-page) .password-grid,
body:not(.login-page) .reset-form {
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.3);
}

html[data-theme="light"] body:not(.login-page) .glass-card .card-header h2,
html[data-theme="light"] body:not(.login-page) .glass-card .card-header p,
html[data-theme="light"] body:not(.login-page) .glass-card label,
html[data-theme="light"] body:not(.login-page) .party-panel .party-heading h3,
html[data-theme="light"] body:not(.login-page) .party-panel .party-heading p {
  color: #12334c;
}

/* Unified liquid-glass forms and panels */
body:not(.login-page) .glass-card,
body:not(.login-page) .party-panel,
body:not(.login-page) .bulk-step,
body:not(.login-page) .bulk-record-preview,
body:not(.login-page) .preview-section,
body:not(.login-page) .empty-state {
  --panel-glass-bg: rgba(255, 255, 255, 0.15);
  --panel-glass-highlight: rgba(255, 255, 255, 0.68);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 38%),
    radial-gradient(circle at 82% 76%, rgba(116, 218, 255, 0.12), transparent 44%),
    var(--panel-glass-bg);
  box-shadow:
    inset 1px 1px 1px var(--panel-glass-highlight),
    inset -1px -1px 1px rgba(255, 255, 255, 0.08),
    0 20px 58px rgba(0, 35, 84, 0.24);
  backdrop-filter: blur(18px) saturate(135%);
  isolation: isolate;
}

body:not(.login-page) .glass-card::before,
body:not(.login-page) .party-panel::before,
body:not(.login-page) .bulk-step::before,
body:not(.login-page) .bulk-record-preview::before,
body:not(.login-page) .preview-section::before,
body:not(.login-page) .empty-state::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%);
  content: "";
  pointer-events: none;
}

body:not(.login-page) .glass-card > *,
body:not(.login-page) .party-panel > *,
body:not(.login-page) .bulk-step > *,
body:not(.login-page) .bulk-record-preview > *,
body:not(.login-page) .preview-section > *,
body:not(.login-page) .empty-state > * {
  position: relative;
  z-index: 1;
}

body:not(.login-page) .form-card,
body:not(.login-page) .list-card {
  padding: 30px;
}

body:not(.login-page) .person-grid,
body:not(.login-page) .profile-grid,
body:not(.login-page) .report-grid,
body:not(.login-page) .password-grid,
body:not(.login-page) .reset-form,
body:not(.login-page) .conditional-form,
body:not(.login-page) .party-fields,
body:not(.login-page) .person-party-fields,
body:not(.login-page) .bulk-upload-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

body:not(.login-page) .person-grid,
body:not(.login-page) .password-grid,
body:not(.login-page) .reset-form {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.3);
  padding: 24px;
  backdrop-filter: blur(12px);
}

body:not(.login-page) .person-grid > *,
body:not(.login-page) .password-grid > *,
body:not(.login-page) .reset-form > *,
body:not(.login-page) .party-fields > *,
body:not(.login-page) .person-party-fields > *,
body:not(.login-page) .conditional-form > * {
  grid-column: 1;
}

body:not(.login-page) .person-grid .wide,
body:not(.login-page) .person-grid .full-field,
body:not(.login-page) .party-fields .full-field,
body:not(.login-page) .person-party-fields .full-field,
body:not(.login-page) .form-section-title,
body:not(.login-page) .section-divider {
  grid-column: 1;
}

body:not(.login-page) .person-grid .animated-button,
body:not(.login-page) .password-grid .animated-button,
body:not(.login-page) .reset-form .animated-button,
body:not(.login-page) .party-actions .animated-button,
body:not(.login-page) .bulk-upload-form .animated-button {
  width: 100%;
  min-height: 52px;
}

body:not(.login-page) .transaction-parties {
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.login-page) .party-panel {
  padding: 24px;
}

body:not(.login-page) .payment-type-control {
  grid-template-columns: 1fr;
}

body:not(.login-page) .table-wrap {
  overflow: auto;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

body:not(.login-page) .generated-summary div,
body:not(.login-page) .profile-grid div,
body:not(.login-page) .bulk-code-grid div,
body:not(.login-page) .transaction-list-item {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

html[data-theme="light"] body:not(.login-page) .glass-card,
html[data-theme="light"] body:not(.login-page) .party-panel,
html[data-theme="light"] body:not(.login-page) .bulk-step,
html[data-theme="light"] body:not(.login-page) .bulk-record-preview,
html[data-theme="light"] body:not(.login-page) .preview-section,
html[data-theme="light"] body:not(.login-page) .empty-state {
  --panel-glass-bg: rgba(255, 255, 255, 0.54);
  color: #12334c;
}

html[data-theme="dark"] body:not(.login-page) .glass-card,
html[data-theme="dark"] body:not(.login-page) .party-panel,
html[data-theme="dark"] body:not(.login-page) .bulk-step,
html[data-theme="dark"] body:not(.login-page) .bulk-record-preview,
html[data-theme="dark"] body:not(.login-page) .preview-section,
html[data-theme="dark"] body:not(.login-page) .empty-state {
  --panel-glass-bg: rgba(2, 28, 51, 0.5);
  --panel-glass-highlight: rgba(255, 255, 255, 0.2);
}

/* Shared collapsible liquid-glass sidebar */
:root {
  --sidebar-width: 292px;
  --sidebar-collapsed-width: 92px;
}

body:not(.login-page) {
  padding-left: var(--sidebar-width);
  transition: padding-left 220ms ease;
}

body:not(.login-page).sidebar-collapsed {
  padding-left: var(--sidebar-collapsed-width);
}

body:not(.login-page) > .topbar {
  display: none;
}

.app-sidebar {
  --sidebar-glass-bg: rgba(3, 35, 62, 0.62);
  --sidebar-highlight: rgba(255, 255, 255, 0.22);
  position: fixed;
  top: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  width: calc(var(--sidebar-width) - 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: transparent;
  box-shadow:
    inset 1px 1px 1px var(--sidebar-highlight),
    inset -1px -1px 1px rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.3);
  color: #e9f7ff;
  backdrop-filter: blur(18px) saturate(140%);
  isolation: isolate;
  transition: width 220ms ease, transform 220ms ease;
}

.sidebar-glass-layer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.sidebar-glass-distortion {
  z-index: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(86, 205, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(0, 110, 185, 0.2), transparent 42%);
}

.sidebar-glass-overlay {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 42%),
    var(--sidebar-glass-bg);
}

.sidebar-glass-specular {
  z-index: 2;
  box-shadow: inset 1px 1px 1px var(--sidebar-highlight);
}

.sidebar-content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 20px 16px;
}

.sidebar-brand-row,
.sidebar-brand,
.sidebar-user,
.sidebar-link {
  display: flex;
  align-items: center;
}

.sidebar-brand-row {
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sidebar-brand {
  min-width: 0;
  gap: 11px;
  color: inherit;
}

.sidebar-brand img {
  width: 52px;
  height: 46px;
  flex: 0 0 52px;
  object-fit: contain;
}

.sidebar-brand-copy,
.sidebar-user-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sidebar-brand-copy small,
.sidebar-user-copy small,
.sidebar-section-label {
  color: rgba(233, 247, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-brand-copy strong,
.sidebar-user-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-collapse-button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.sidebar-user {
  gap: 12px;
  margin: 18px 0 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.sidebar-user:hover,
.sidebar-user:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.14);
}

.sidebar-user-avatar {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, #29b7e8, #07518a);
  color: #fff;
  font-weight: 900;
}

.sidebar-navigation {
  display: grid;
  gap: 6px;
  overflow-y: auto;
  padding: 6px 0 14px;
  scrollbar-width: none;
}

.sidebar-navigation::-webkit-scrollbar {
  display: none;
}

.sidebar-section-label {
  margin: 12px 12px 5px;
}

.sidebar-settings-label {
  margin-top: 22px;
}

.sidebar-link {
  min-height: 48px;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  padding: 0 13px;
  color: rgba(233, 247, 255, 0.76);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.sidebar-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar-link.active {
  border-color: rgba(86, 205, 255, 0.38);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.24), rgba(7, 81, 138, 0.24));
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sidebar-footer {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sidebar-button {
  width: 100%;
}

.sidebar-logout {
  color: #ffaaa4;
}

.sidebar-collapsed .app-sidebar {
  width: calc(var(--sidebar-collapsed-width) - 28px);
}

.sidebar-collapsed .sidebar-content {
  padding-right: 10px;
  padding-left: 10px;
}

.sidebar-collapsed .sidebar-brand-copy,
.sidebar-collapsed .sidebar-user-copy,
.sidebar-collapsed .sidebar-link span,
.sidebar-collapsed .sidebar-section-label {
  display: none;
}

.sidebar-collapsed .sidebar-brand-row {
  justify-content: center;
  flex-direction: column;
}

.sidebar-collapsed .sidebar-brand img {
  width: 44px;
  flex-basis: 44px;
}

.sidebar-collapsed .sidebar-collapse-button span {
  transform: rotate(180deg);
}

.sidebar-collapsed .sidebar-user,
.sidebar-collapsed .sidebar-link {
  justify-content: center;
  padding-right: 0;
  padding-left: 0;
}

.sidebar-mobile-toggle,
.sidebar-backdrop {
  display: none;
}

html[data-theme="light"] .app-sidebar {
  --sidebar-glass-bg: rgba(255, 255, 255, 0.66);
  --sidebar-highlight: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.86);
  color: #12334c;
  box-shadow: 0 24px 70px rgba(7, 81, 138, 0.16);
}

html[data-theme="light"] .sidebar-brand-copy small,
html[data-theme="light"] .sidebar-user-copy small,
html[data-theme="light"] .sidebar-section-label {
  color: #6b8293;
}

html[data-theme="light"] .sidebar-user,
html[data-theme="light"] .sidebar-collapse-button {
  border-color: rgba(7, 81, 138, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

html[data-theme="light"] .sidebar-user:hover,
html[data-theme="light"] .sidebar-user:focus-visible {
  background: rgba(22, 166, 219, 0.12);
}

html[data-theme="light"] .sidebar-link {
  color: #496579;
}

html[data-theme="light"] .sidebar-link:hover,
html[data-theme="light"] .sidebar-link.active {
  color: #07518a;
}

html[data-theme="light"] .sidebar-link.active {
  border-color: rgba(22, 166, 219, 0.28);
  background: rgba(22, 166, 219, 0.12);
}

body:not(.login-page) .app-shell {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding-top: 28px;
}

@media (max-width: 900px) {
  body:not(.login-page),
  body:not(.login-page).sidebar-collapsed {
    padding-left: 0;
  }

  .app-sidebar,
  .sidebar-collapsed .app-sidebar {
    top: 12px;
    bottom: 12px;
    left: 12px;
    width: min(292px, calc(100vw - 36px));
    transform: translateX(calc(-100% - 24px));
  }

  .sidebar-collapsed .sidebar-content {
    padding: 20px 16px;
  }

  .sidebar-collapsed .sidebar-brand-copy,
  .sidebar-collapsed .sidebar-user-copy {
    display: grid;
  }

  .sidebar-collapsed .sidebar-link span {
    display: inline;
  }

  .sidebar-collapsed .sidebar-section-label {
    display: block;
  }

  .sidebar-collapsed .sidebar-brand-row {
    justify-content: space-between;
    flex-direction: row;
  }

  .sidebar-collapsed .sidebar-brand img {
    width: 52px;
    flex-basis: 52px;
  }

  .sidebar-collapsed .sidebar-user,
  .sidebar-collapsed .sidebar-link {
    justify-content: flex-start;
    padding-right: 13px;
    padding-left: 13px;
  }

  .sidebar-collapse-button {
    display: none;
  }

  .sidebar-mobile-open .app-sidebar {
    transform: translateX(0);
  }

  .sidebar-mobile-toggle {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
    background: rgba(3, 35, 62, 0.72);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    cursor: pointer;
  }

  .sidebar-mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(1, 16, 30, 0.54);
    backdrop-filter: blur(3px);
  }

  .sidebar-mobile-open .sidebar-backdrop {
    display: block;
  }

  .sidebar-mobile-open .sidebar-mobile-toggle {
    display: none;
  }

  body:not(.login-page) .app-shell {
    padding-top: 78px;
  }
}

@media (max-width: 900px) {
  body:not(.login-page) .transaction-parties {
    grid-template-columns: 1fr;
  }
}

/* Liquid-glass dashboard tiles */
.admin-tile-grid {
  grid-template-columns: repeat(3, minmax(190px, 260px));
  justify-content: center;
  gap: 18px;
}

.admin-tile {
  --liquid-glass-bg: rgba(255, 255, 255, 0.15);
  --liquid-glass-highlight: rgba(255, 255, 255, 0.72);
  position: relative;
  display: block;
  min-height: 0;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 18px 48px rgba(0, 41, 89, 0.25);
  padding: 0;
  isolation: isolate;
}

.admin-tile .liquid-glass-filter,
.admin-tile .liquid-glass-distortion,
.admin-tile .liquid-glass-overlay,
.admin-tile .liquid-glass-specular {
  display: block;
}

.admin-tile .liquid-glass-filter {
  backdrop-filter: blur(8px);
  filter: url("#glass-distortion") saturate(130%) brightness(1.12);
}

.admin-tile .tile-content {
  position: relative;
  z-index: 5;
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
}

.admin-tile:hover {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 66px rgba(0, 39, 84, 0.34);
  transform: translateY(-7px) scale(1.015);
}

.admin-tile .tile-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.48);
}

.admin-tile .tile-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-tile .tile-copy {
  gap: 10px;
  margin-top: auto;
}

.admin-tile .tile-copy strong {
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.admin-tile .tile-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.admin-tile .tile-arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-tile:hover .tile-arrow {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(4px);
}

html[data-theme="light"] .admin-tile .tile-copy strong,
html[data-theme="light"] .admin-tile .tile-copy small,
html[data-theme="light"] .admin-tile .tile-mark,
html[data-theme="light"] .admin-tile .tile-arrow {
  color: #12334c;
}

@media (max-width: 900px) {
  .admin-tile-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 620px) {
  .admin-tile-grid {
    grid-template-columns: 1fr;
  }

  .admin-tile {
    width: min(100%, 360px);
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-experience *,
  .login-experience::before {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* User-selectable application themes */
html[data-theme="light"] body:not(.login-page) {
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 173, 227, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(4, 72, 137, 0.08), transparent 34rem),
    #f2f9fc;
  color: #12334c;
}

html[data-theme="light"] body:not(.login-page) .glass-card,
html[data-theme="light"] body:not(.login-page) .transaction-glass-panel {
  --liquid-glass-bg: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.82);
  background-color: rgba(255, 255, 255, 0.42);
  color: #12334c;
  box-shadow: 0 20px 60px rgba(7, 81, 138, 0.13);
}

html[data-theme="light"] .transaction-glass-panel .card-header h2,
html[data-theme="light"] .transaction-glass-panel .card-header p,
html[data-theme="light"] .transaction-glass-panel label {
  color: #12334c;
}

html[data-theme="dark"] body:not(.login-page) {
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 173, 227, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(0, 0, 0, 0.38), transparent 34rem),
    linear-gradient(145deg, rgba(3, 25, 48, 0.92), rgba(5, 67, 102, 0.9)),
    #031b2d;
  color: #e9f7ff;
}

html[data-theme="dark"] body:not(.login-page) .glass-card,
html[data-theme="dark"] body:not(.login-page) .transaction-glass-panel {
  --liquid-glass-bg: rgba(2, 28, 51, 0.44);
  --liquid-glass-highlight: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.16);
  background-color: rgba(2, 28, 51, 0.32);
  color: #e9f7ff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] body:not(.login-page) .card-header h2,
html[data-theme="dark"] body:not(.login-page) .card-header p,
html[data-theme="dark"] body:not(.login-page) label,
html[data-theme="dark"] body:not(.login-page) small {
  color: #e9f7ff;
}

html[data-theme="dark"] body:not(.login-page) input,
html[data-theme="dark"] body:not(.login-page) select,
html[data-theme="dark"] body:not(.login-page) textarea {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(3, 28, 49, 0.72);
  color: #f2fbff;
}

html[data-theme="dark"] body:not(.login-page) input::placeholder,
html[data-theme="dark"] body:not(.login-page) textarea::placeholder {
  color: rgba(233, 247, 255, 0.58);
}

html[data-theme="dark"] body:not(.login-page) input[readonly] {
  background: rgba(8, 53, 83, 0.8);
  color: #cceeff;
}

html[data-theme="dark"] body:not(.login-page) .admin-tile,
html[data-theme="dark"] body:not(.login-page) .transaction-list-item,
html[data-theme="dark"] body:not(.login-page) .preview-section,
html[data-theme="dark"] body:not(.login-page) .bulk-record-preview {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(3, 28, 49, 0.42);
}

/* Neutral application design tokens */
:root {
  --ink: #12334c;
  --muted: #60788b;
  --glass: rgba(255, 255, 255, 0.67);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-border: rgba(255, 255, 255, 0.82);
  --primary: #16a6db;
  --primary-dark: #0878b5;
  --primary-deep: #07518a;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --danger: #c43d32;
  --success: #16855c;
  --shadow: 0 22px 62px rgba(4, 70, 124, 0.14);
}

body:not(.login-page) {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(4, 72, 137, 0.18), transparent 34rem),
    linear-gradient(145deg, rgba(4, 72, 137, 0.24), rgba(35, 173, 227, 0.18)),
    rgb(35, 173, 227);
  background-attachment: fixed;
}

body:not(.login-page)::before,
body:not(.login-page)::after {
  position: fixed;
  z-index: -1;
  border: 34px solid rgba(22, 166, 219, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body.transaction-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(4, 72, 137, 0.18), transparent 34rem),
    linear-gradient(145deg, rgba(4, 72, 137, 0.24), rgba(35, 173, 227, 0.18)),
    rgb(35, 173, 227);
  background-attachment: fixed;
}

body.transaction-page::before,
body.transaction-page::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.transaction-setup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.transaction-count-selector {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.55),
    0 18px 55px rgba(0, 35, 84, 0.24);
  color: #fff;
  padding: 26px;
  backdrop-filter: blur(18px) saturate(135%);
}

.transaction-count-selector .card-header h2,
.transaction-count-selector .card-header p,
.transaction-count-selector label {
  color: #fff;
}

.transaction-count-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.transaction-count-tile {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 18px;
}

.transaction-count-tile:has(input:checked) {
  border-color: rgba(125, 211, 252, 0.75);
  background: rgba(56, 189, 248, 0.2);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.24);
}

.transaction-count-tile:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.48;
}

.transaction-count-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.transaction-count-tile > span:last-child {
  display: grid;
  gap: 5px;
}

.transaction-count-tile small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.count-tile-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1.3rem;
  font-weight: 900;
}

.multiple-count-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
  align-items: end;
  gap: 16px;
  margin-top: 18px;
}

.multiple-count-control[hidden] {
  display: none;
}

.transaction-progress {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(2, 67, 128, 0.2);
  padding: 13px 16px;
}

.transaction-progress span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.transaction-plan-button {
  width: 100%;
  margin-top: 16px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.multiple-count-control input {
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.transaction-upload-complete {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  border: 1px solid rgba(79, 230, 170, 0.5);
  border-radius: 16px;
  background: rgba(22, 133, 92, 0.2);
  padding: 16px;
}

.transaction-upload-complete > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.transaction-upload-complete small {
  color: rgba(255, 255, 255, 0.76);
}

.transaction-complete-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-complete-actions .ghost-button {
  white-space: nowrap;
}

.completion-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(22, 133, 92, 0.42);
  font-size: 1.35rem;
  font-weight: 900;
}

.xml-readiness {
  display: grid;
  min-width: 250px;
  gap: 5px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.13);
  padding: 12px 15px;
}

.xml-readiness span {
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.4;
}

.transaction-limit-reached {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(22, 133, 92, 0.36);
  border-radius: 16px;
  background: rgba(22, 133, 92, 0.16);
  color: #fff;
  padding: 16px 18px;
  text-align: center;
}

.transaction-limit-reached span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

html[data-theme="light"] .transaction-count-selector,
html[data-theme="light"] .transaction-count-selector .card-header h2,
html[data-theme="light"] .transaction-count-selector .card-header p,
html[data-theme="light"] .transaction-count-selector label,
html[data-theme="light"] .transaction-count-tile small,
html[data-theme="light"] .transaction-progress span,
html[data-theme="light"] .transaction-upload-complete small {
  color: #12334c;
}

html[data-theme="light"] .multiple-count-control input {
  color: #12334c;
  -webkit-text-fill-color: #12334c;
}

@media (max-width: 700px) {
  .transaction-count-tiles,
  .multiple-count-control,
  .transaction-upload-complete {
    grid-template-columns: 1fr;
  }

  .transaction-complete-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.transaction-glass-panel {
  --liquid-glass-bg: rgba(255, 255, 255, 0.16);
  --liquid-glass-highlight: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 18px 55px rgba(0, 30, 78, 0.32);
  color: #fff;
  isolation: isolate;
}

.glass-filter-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.liquid-glass-filter,
.liquid-glass-distortion,
.liquid-glass-overlay,
.liquid-glass-specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.liquid-glass-filter {
  z-index: 1;
  backdrop-filter: blur(7px);
  filter: url("#glass-distortion") saturate(125%) brightness(1.12);
}

.liquid-glass-distortion {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.15), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(130, 220, 255, 0.14), transparent 46%);
  background-size: 220% 220%;
  mix-blend-mode: overlay;
  animation: liquid-glass-float 10s infinite ease-in-out;
}

.liquid-glass-overlay {
  z-index: 3;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 42%),
    var(--liquid-glass-bg);
}

.liquid-glass-specular {
  z-index: 4;
  box-shadow:
    inset 1px 1px 1px var(--liquid-glass-highlight),
    inset -1px -1px 1px rgba(255, 255, 255, 0.08);
}

.liquid-glass-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 30px;
}

@keyframes liquid-glass-float {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-glass-distortion {
    animation: none;
  }
}

.transaction-glass-panel .card-header h2 {
  color: #fff;
}

.transaction-glass-panel .card-header p,
.transaction-glass-panel label {
  color: rgba(255, 255, 255, 0.82);
}

.transaction-field-stack {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.transaction-field-stack input,
.transaction-field-stack select,
.transaction-field-stack textarea {
  background: rgba(255, 255, 255, 0.9);
}

.transaction-field-stack input[readonly] {
  background: rgba(225, 242, 251, 0.82);
}

.transaction-field-stack .transaction-count-note {
  grid-column: auto;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(3, 67, 128, 0.22);
  color: #fff;
}

.transaction-field-stack .transaction-count-note span {
  color: rgba(255, 255, 255, 0.76);
}

.transaction-generate-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.transaction-page > .app-shell > .glass-card {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 35, 84, 0.24);
}

.transaction-page > .app-shell > .glass-card .card-header h2 {
  color: #fff;
}

.transaction-page > .app-shell > .glass-card .card-header p,
.transaction-page > .app-shell > .glass-card small {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.login-page)::before {
  top: 120px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-right-color: rgba(56, 189, 248, 0.1);
}

body:not(.login-page)::after {
  bottom: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
  border-bottom-color: rgba(56, 189, 248, 0.08);
}

.topbar {
  position: relative;
  margin: 18px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(5, 83, 145, 0.96), rgba(18, 166, 219, 0.88));
  box-shadow: 0 18px 48px rgba(4, 70, 124, 0.2);
  color: #fff;
  padding: 22px 26px;
  backdrop-filter: blur(22px) saturate(145%);
}

.topbar::after {
  content: none;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  color: #fff;
}

.topbar-brand img {
  display: block;
  width: 116px;
  height: 82px;
  flex: 0 0 116px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.topbar-brand-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.topbar-brand .eyebrow {
  margin: 0;
}

.topbar-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
}

.topbar-brand:hover img {
  transform: translateY(-1px);
}

.topbar .nav-shell {
  margin-left: auto;
}

.topbar .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.topbar nav {
  color: rgba(255, 255, 255, 0.92);
}

.nav-pages {
  border-right-color: rgba(255, 255, 255, 0.22);
}

.topbar .ghost-button {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.topbar .ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.2);
}

.topbar .active-nav {
  position: relative;
  border-color: rgba(125, 211, 252, 0.6);
  background: rgba(56, 189, 248, 0.23);
  box-shadow: inset 0 0 0 1px rgba(255, 171, 68, 0.22);
}

.topbar .active-nav::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
}

.app-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 0 32px 44px;
}

.glass-card,
.admin-tile {
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.51));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(145%);
}

.form-card,
.list-card {
  border-left: 4px solid var(--primary);
  padding: 30px;
}

.card-header {
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(7, 81, 138, 0.11);
}

.card-header h2 {
  color: var(--primary-deep);
}

.card-header p {
  max-width: 780px;
}

.admin-home {
  align-content: start;
  min-height: 0;
  gap: 20px;
}

.admin-home-heading {
  border-left: 5px solid var(--accent);
  padding: 5px 0 5px 17px;
}

.admin-home-heading h2 {
  color: var(--primary-deep);
}

.admin-home-heading .eyebrow {
  color: var(--primary);
}

.admin-tile {
  min-height: 168px;
  border-left: 4px solid rgba(22, 166, 219, 0.8);
  box-shadow: 0 18px 48px rgba(4, 70, 124, 0.13);
}

.admin-tile:nth-child(3n + 2) {
  border-left-color: rgba(56, 189, 248, 0.88);
}

.admin-tile:hover {
  border-color: rgba(22, 166, 219, 0.45);
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 26px 64px rgba(4, 70, 124, 0.19);
}

.tile-mark {
  background: rgba(22, 166, 219, 0.13);
  color: var(--primary-dark);
}

.create-user-tile .tile-mark,
.history-tile .tile-mark,
.settings-tile .tile-mark {
  background: var(--accent-soft);
  color: #bb5b00;
}

.bulk-tile .tile-mark {
  background: rgba(7, 81, 138, 0.1);
  color: var(--primary-deep);
}

.tile-copy strong {
  color: var(--primary-deep);
}

.tile-arrow {
  color: var(--accent);
}

.animated-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 13px 28px rgba(7, 120, 181, 0.24);
}

.animated-button:hover {
  box-shadow: 0 18px 36px rgba(7, 120, 181, 0.3);
}

.ghost-button,
.mini-button {
  border-color: rgba(7, 120, 181, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
}

.mini-button:hover,
.ghost-button:hover {
  border-color: rgba(22, 166, 219, 0.4);
  background: rgba(255, 255, 255, 0.93);
}

.export-button {
  border-color: rgba(56, 189, 248, 0.28);
  color: #bb5b00;
}

input,
select,
textarea {
  border-color: rgba(7, 81, 138, 0.15);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(7, 81, 138, 0.025);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(22, 166, 219, 0.35);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 166, 219, 0.13);
}

input[readonly] {
  background: rgba(230, 243, 249, 0.84);
  color: #49687b;
}

label {
  color: #4f6c7f;
}

.field-help {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.75;
}

.field-error {
  color: #ffd8d4;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.field-error[hidden] {
  display: none;
}

.password-input-wrap {
  position: relative;
  display: block;
}

.password-input-wrap input {
  padding-right: 48px;
}

.password-view-button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  transform: translateY(-50%);
}

.password-view-button:hover,
.password-view-button.is-visible {
  background: rgba(22, 166, 219, 0.14);
  opacity: 1;
}

.login-form .password-view-button {
  border: 1px solid rgba(7, 81, 138, 0.14);
  background: rgba(7, 81, 138, 0.08);
  color: #07518a;
  opacity: 1;
}

.login-form .password-view-button:hover,
.login-form .password-view-button.is-visible {
  background: rgba(7, 81, 138, 0.18);
  color: #033f70;
}

.settings-section-heading {
  margin: 12px 0 -4px;
  color: #fff;
}

.settings-section-heading h2,
.settings-section-heading p {
  margin: 4px 0;
}

html[data-theme="light"] .settings-section-heading {
  color: #12334c;
}

html[data-theme="light"] .settings-section-heading > p:not(.eyebrow) {
  color: #526c7d;
}

.system-settings-form {
  display: grid;
  max-width: 680px;
  gap: 18px;
  margin-top: 22px;
}

input.field-invalid,
select.field-invalid,
textarea.field-invalid {
  border-color: #ff746b !important;
  box-shadow: 0 0 0 4px rgba(255, 89, 78, 0.18) !important;
}

html[data-theme="light"] .field-error {
  color: #a92820;
}

.person-grid,
.report-grid,
.password-grid,
.reset-form {
  padding: 22px;
  border: 1px solid rgba(7, 120, 181, 0.11);
  border-radius: 8px;
  background: rgba(245, 251, 254, 0.56);
}

.form-section-title,
.profile-section-title,
.section-divider {
  position: relative;
  border-top-color: rgba(7, 120, 181, 0.13);
  padding-left: 14px;
}

.form-section-title::before,
.profile-section-title::before,
.section-divider::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: 34px;
  border-radius: 4px;
  background: var(--accent);
  content: "";
}

.form-section-title h3,
.profile-section-title h3,
.section-divider h4 {
  color: var(--primary-deep);
}

.transaction-count-note,
.to-account-note {
  border-color: rgba(22, 166, 219, 0.2);
  background: rgba(22, 166, 219, 0.075);
}

.xml-structure span {
  border-color: rgba(22, 166, 219, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
}

.transaction-list-item {
  border-color: rgba(7, 120, 181, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.transaction-list-item:hover {
  border-color: rgba(22, 166, 219, 0.42);
  background: rgba(255, 255, 255, 0.92);
}

.party-panel {
  border-color: rgba(7, 120, 181, 0.14);
  border-top: 4px solid var(--primary);
  background: rgba(248, 252, 254, 0.64);
  box-shadow: 0 14px 36px rgba(4, 70, 124, 0.08);
}

.party-panel + .party-panel {
  border-top-color: var(--accent);
}

.party-heading {
  border-bottom-color: rgba(7, 120, 181, 0.12);
}

.party-heading h3 {
  color: var(--primary-deep);
}

.party-heading .eyebrow {
  color: var(--primary);
}

.payment-type-control label {
  border-color: rgba(7, 120, 181, 0.15);
  background: rgba(255, 255, 255, 0.78);
}

.payment-type-control label:has(input:checked) {
  border-color: rgba(22, 166, 219, 0.58);
  background: rgba(22, 166, 219, 0.1);
  box-shadow: inset 0 0 0 1px rgba(22, 166, 219, 0.1);
  color: var(--primary-dark);
}

.conditional-placeholder {
  border-color: rgba(56, 189, 248, 0.3);
  background: var(--accent-soft);
}

.generated-summary div,
.profile-grid div,
.empty-state {
  border-color: rgba(7, 120, 181, 0.11);
  background: rgba(255, 255, 255, 0.68);
}

.generated-summary div {
  border-top: 3px solid var(--primary);
}

.generated-summary div:nth-child(2) {
  border-top-color: var(--accent);
}

.save-confirmation {
  border-color: rgba(22, 133, 92, 0.25);
  background: rgba(22, 133, 92, 0.08);
}

.table-wrap {
  border: 1px solid rgba(7, 120, 181, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

table {
  border-radius: 0;
  background: transparent;
}

thead {
  background: linear-gradient(105deg, rgba(7, 81, 138, 0.97), rgba(22, 166, 219, 0.9));
}

th {
  color: #fff;
}

td {
  border-bottom-color: rgba(7, 120, 181, 0.09);
}

tbody tr {
  transition: background 160ms ease;
}

tbody tr:hover {
  background: rgba(22, 166, 219, 0.055);
}

.status-pill.active {
  background: rgba(22, 133, 92, 0.13);
  color: var(--success);
}

.status-pill.inactive {
  background: rgba(196, 61, 50, 0.11);
  color: var(--danger);
}

.status-pill.role-superadmin {
  background: var(--accent-soft);
  color: #a95000;
}

.status-pill.role-user {
  background: rgba(22, 166, 219, 0.11);
  color: var(--primary-dark);
}

.status-pill.role-admin {
  background: rgba(56, 189, 248, 0.15);
  color: #a95000;
}

.message.success {
  border-left: 4px solid var(--success);
  background: rgba(22, 133, 92, 0.1);
}

.message.error {
  border-left: 4px solid var(--danger);
  background: rgba(196, 61, 50, 0.1);
}

@media (max-width: 900px) {
  .topbar {
    margin: 14px 14px 22px;
  }

  .app-shell {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 620px) {
  .topbar {
    margin: 10px 10px 18px;
    padding: 20px;
  }

  .topbar-brand {
    width: 100%;
    gap: 12px;
  }

  .topbar-brand img {
    width: 86px;
    height: 62px;
    flex-basis: 86px;
  }

  .topbar-title {
    font-size: 1.5rem;
  }

  .topbar::after {
    right: 18%;
  }

  .form-card,
  .list-card {
    padding: 20px;
  }

  .person-grid,
  .report-grid,
  .password-grid,
  .reset-form {
    padding: 16px;
  }

  .admin-tile {
    min-height: 142px;
    padding: 20px;
  }

  .transaction-setup-form {
    grid-template-columns: 1fr;
  }

  .transaction-generate-button {
    grid-column: 1;
  }
}

/* Final dashboard liquid-glass overrides */
.admin-tile-grid {
  grid-template-columns: repeat(auto-fit, 190px);
  justify-content: start;
  gap: 16px;
}

.admin-tile {
  position: relative;
  display: block;
  width: 190px;
  height: 190px;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  background: transparent;
  padding: 0;
  isolation: isolate;
}

.admin-tile .tile-content {
  position: relative;
  z-index: 5;
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
}

.admin-tile .tile-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.admin-tile .tile-copy {
  margin-top: auto;
}

.admin-tile .tile-copy strong {
  font-size: 0.96rem;
}

.admin-tile .tile-copy small {
  font-size: 0.72rem;
  line-height: 1.3;
}

.admin-tile .tile-arrow {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.admin-tile .liquid-glass-distortion {
  animation: none;
  background-position: 50% 50%;
}

.admin-tile .tile-copy strong,
.admin-tile .tile-copy small,
.admin-tile .tile-arrow {
  color: #fff;
}

@media (max-width: 900px) {
  .admin-tile-grid {
    grid-template-columns: repeat(auto-fit, 190px);
  }
}

@media (max-width: 620px) {
  .admin-tile-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
  }

  .admin-tile {
    width: 100%;
    height: auto;
    min-height: 128px;
    justify-self: stretch;
    padding: 0;
  }

  .admin-tile .tile-content {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px;
  }

  .admin-tile .tile-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .admin-tile .tile-copy {
    display: grid;
    min-width: 0;
    align-content: center;
    gap: 7px;
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .admin-tile .tile-copy strong {
    overflow-wrap: anywhere;
    font-size: 1rem;
    line-height: 1.2;
  }

  .admin-tile .tile-copy small {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .admin-tile .tile-arrow {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }
}

/* Cascade lock: vertical forms and shared liquid-glass presentation */
body:not(.login-page) :is(
  .person-grid,
  .report-grid,
  .password-grid,
  .reset-form,
  .conditional-form,
  .party-fields,
  .person-party-fields,
  .bulk-upload-form
) {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.login-page) :is(.person-grid, .password-grid, .reset-form) {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.3);
}

body:not(.login-page) :is(.glass-card, .party-panel, .bulk-step, .bulk-record-preview, .preview-section, .empty-state) {
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 38%),
    radial-gradient(circle at 82% 76%, rgba(116, 218, 255, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.68),
    inset -1px -1px 1px rgba(255, 255, 255, 0.08),
    0 20px 58px rgba(0, 35, 84, 0.24);
  backdrop-filter: blur(18px) saturate(135%);
}

body:not(.login-page) :is(.glass-card, .party-panel) :is(.card-header h2, .card-header p, label, .party-heading h3, .party-heading p) {
  color: #fff;
}

html[data-theme="light"] body:not(.login-page) :is(.glass-card, .party-panel, .bulk-step, .bulk-record-preview, .preview-section, .empty-state) {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.7), transparent 38%),
    rgba(255, 255, 255, 0.54);
}

html[data-theme="light"] body:not(.login-page) :is(.glass-card, .party-panel) :is(.card-header h2, .card-header p, label, .party-heading h3, .party-heading p) {
  color: #12334c;
}

html[data-theme="dark"] body:not(.login-page) :is(.glass-card, .party-panel, .bulk-step, .bulk-record-preview, .preview-section, .empty-state) {
  background:
    radial-gradient(circle at 18% 20%, rgba(35, 173, 227, 0.12), transparent 38%),
    rgba(2, 28, 51, 0.5);
}

html[data-theme="dark"] body:not(.login-page) :is(
  .card-header h2,
  .form-section-title h3,
  .profile-section-title h3,
  .section-divider h4,
  .party-heading h3,
  .preview-section h3,
  .preview-section h4,
  .bulk-record-heading h3,
  .create-user-panel h3
) {
  color: #d9f3ff;
}

html[data-theme="dark"] body:not(.login-page) :is(
  .card-header p,
  .form-section-title p,
  .profile-section-title p,
  .section-divider p,
  .party-heading .eyebrow
) {
  color: rgba(222, 245, 255, 0.78);
}

.create-user-split-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin-top: 26px;
}

.create-user-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.42),
    0 18px 48px rgba(0, 35, 84, 0.18);
  padding: 24px;
  backdrop-filter: blur(16px) saturate(135%);
}

.create-user-field-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.create-user-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 54px;
}

html[data-theme="light"] .create-user-panel {
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .create-user-panel {
  background: rgba(2, 28, 51, 0.48);
}

@media (max-width: 900px) {
  .create-user-split-form {
    grid-template-columns: 1fr;
  }

  .create-user-submit {
    grid-column: 1;
  }
}
