:root {
  --psu-navy: #041e42;
  --psu-navy-2: #0a2858;
  --psu-gold: #e8c547;
  --psu-gold-dim: #b8942e;
  --white: #ffffff;
  --silver: #a2aaad;
  --silver-deep: #6f7a86;
  --slime: #65fe08;
  --slime-dim: #3fb32b;
  --text: #f2f6fb;
  --muted: #b9c2cf;
  --panel: rgba(4, 30, 66, 0.72);
  --panel-border: rgba(162, 170, 173, 0.35);
  --danger: #ff5a5a;
  font-family: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(232, 197, 71, 0.06) 0%, transparent 120px),
    radial-gradient(900px 500px at 12% 0%, #123a72 0%, var(--psu-navy) 45%, #020814 100%);
}

.psu-stripe-bar {
  position: relative;
  z-index: 2;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--psu-navy) 0,
    var(--psu-navy) 28px,
    var(--white) 28px,
    var(--white) 40px,
    var(--psu-navy) 40px,
    var(--psu-navy) 68px,
    var(--psu-gold) 68px,
    var(--psu-gold) 80px
  );
  opacity: 0.95;
}

.bg-slime {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background: repeating-linear-gradient(
    -32deg,
    transparent,
    transparent 36px,
    rgba(101, 254, 8, 0.35) 36px,
    rgba(101, 254, 8, 0.35) 38px
  );
  z-index: 0;
}

.top {
  position: relative;
  z-index: 1;
  padding: 22px 22px 12px;
  border-bottom: 2px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(4, 30, 66, 0.95), rgba(4, 30, 66, 0.75));
}

.brand-row {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-logo {
  width: 108px;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--silver);
  box-shadow: 0 0 0 2px var(--psu-navy), 0 8px 28px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.brand-text {
  flex: 1;
}

.auth-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.auth-user {
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 600;
}

.btn-auth {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.auth-logout-form {
  margin: 0;
}

.login-page .login-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 20px;
}

.login-panel {
  padding: 28px 24px 32px;
}

.login-form .lbl {
  margin-top: 12px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  box-sizing: border-box;
}

.login-form .btn-navy {
  margin-top: 18px;
  width: 100%;
}

.login-error {
  color: #c0392b;
  font-weight: 600;
  margin: 0 0 12px;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--silver);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}

.link-btn:hover {
  color: #fff;
}

.kicker {
  margin: 0 0 4px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 700;
}

.title-ghost {
  margin: 0 0 8px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 0 18px rgba(101, 254, 8, 0.35), 2px 2px 0 #020814;
}

.sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 820px;
  font-size: 0.98rem;
}

.hero-squad {
  position: relative;
  z-index: 1;
  padding: 10px 14px 12px;
  border-bottom: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(0, 20, 50, 0.92), rgba(2, 6, 16, 0.75));
}

.hero-squad-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: clamp(90px, 18vw, 132px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scrollbar-color: rgba(212, 168, 75, 0.45) transparent;
}

.hero-squad-item {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: clamp(88px, 22vw, 140px);
  display: flex;
  align-items: flex-end;
}

.hero-squad-item--mark {
  height: clamp(64px, 16vw, 100px);
  padding-right: 4px;
}

.hero-squad-item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(38vw, 200px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
}

.stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.45);
}

.stat {
  min-width: 110px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.stat-num {
  font-family: "Graduate", "Georgia", serif;
  font-size: 1.35rem;
  color: var(--white);
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 18px;
  padding: 18px 18px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 1020px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.panel,
.results {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.panel {
  height: fit-content;
  position: sticky;
  top: 10px;
}

.results {
  min-height: 360px;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Graduate", "Georgia", serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hint,
.msg {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.msg {
  color: var(--slime);
  min-height: 1.2em;
}

.hint code {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px solid rgba(162, 170, 173, 0.25);
}

.lbl {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
  margin: 10px 0 6px;
}

input,
select,
textarea,
button,
.btn {
  width: 100%;
  padding: 10px 11px;
  border-radius: 9px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.65);
  color: var(--text);
  font-size: 0.95rem;
}

button {
  cursor: pointer;
  margin-top: 10px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}

.btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-row.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 520px) {
  .btn-row.three {
    grid-template-columns: 1fr;
  }
}

.btn-navy {
  background: linear-gradient(180deg, #0c3b78, var(--psu-navy));
  color: var(--white);
  border: 1px solid rgba(162, 170, 173, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.btn-navy:hover {
  filter: brightness(1.08);
}

.btn-silver {
  background: linear-gradient(180deg, #c5ccd1, var(--silver));
  color: var(--psu-navy);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-silver:hover {
  filter: brightness(1.05);
}

.btn-slime {
  background: linear-gradient(180deg, #8fff4a, var(--slime));
  color: #05220a;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 22px rgba(101, 254, 8, 0.25);
}

.btn-slime:hover {
  filter: brightness(1.06);
}

.btn.secondary {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--silver);
  color: var(--white);
  font-weight: 700;
}

.row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.row .btn,
.row .btn.secondary {
  flex: 1;
  margin-top: 10px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.grid .grid-span-2 {
  grid-column: 1 / -1;
}

.school-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.school-filter-input {
  flex: 1;
  min-width: 140px;
}

.chk-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.subsection-title {
  margin: 14px 0 6px;
  font-family: "Graduate", "Georgia", serif;
  font-size: 0.95rem;
  color: var(--silver);
  letter-spacing: 0.05em;
}

.bulk-area {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  line-height: 1.35;
}

.details-advanced {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.35);
}

.details-advanced summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--silver);
}

.details-advanced[open] summary {
  margin-bottom: 8px;
}

.preset-row {
  margin-top: 8px;
}

.scout-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.scout-ico {
  font-size: 1rem;
  min-width: 1.25em;
  text-align: center;
}

.scout-select {
  width: auto !important;
  min-width: 0;
  flex: 1;
  padding: 6px 8px !important;
  font-size: 0.78rem !important;
}

.player-link {
  color: var(--slime);
  font-weight: 600;
  text-decoration: none;
}

.player-link:hover {
  text-decoration: underline;
}

.profile-layout {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.profile-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 10px 0 18px;
}

@media (max-width: 720px) {
  .profile-map-grid {
    grid-template-columns: 1fr;
  }
}

.profile-leaflet {
  height: 240px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.5);
  z-index: 1;
}

.school-addr-area {
  width: 100%;
  min-height: 64px;
  resize: vertical;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.55);
  color: var(--text);
}

.profile-card {
  position: static;
}

.kv {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.kv li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--panel-border);
  font-size: 0.92rem;
}

.kv span {
  color: var(--muted);
}

.grade-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gbtn {
  flex: 1;
  min-width: 88px;
  padding: 10px 8px !important;
  border-radius: 10px;
  border: 1px solid var(--panel-border) !important;
  background: rgba(2, 8, 20, 0.75) !important;
  color: var(--text) !important;
  margin-top: 0 !important;
  font-size: 0.82rem !important;
}

.gbtn.ghost {
  border-color: rgba(162, 170, 173, 0.5) !important;
}

.gbtn.red {
  border-color: #ff6b6b !important;
}

.gbtn.yellow {
  border-color: #ffd54f !important;
}

.gbtn.green {
  border-color: #69f0ae !important;
}

.gbtn.blue {
  border-color: #64b5f6 !important;
}

.gbtn.gold {
  border-color: var(--psu-gold) !important;
  color: #fff8e1 !important;
  background: linear-gradient(180deg, rgba(232, 197, 71, 0.25), rgba(2, 8, 20, 0.85)) !important;
}

.gbtn.active {
  outline: 2px solid var(--slime);
  box-shadow: 0 0 12px rgba(101, 254, 8, 0.35);
}

.back-link {
  color: var(--slime);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.back-link:hover {
  text-decoration: underline;
}

.distance-line {
  font-size: 1.1rem;
  margin: 8px 0 12px;
  color: var(--muted);
}

.distance-line strong {
  color: var(--white);
  font-size: 1.35rem;
}

hr {
  border: none;
  border-top: 1px solid var(--panel-border);
  margin: 16px 0;
}

.results-head {
  padding: 4px 4px 10px;
}

.results-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.results-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.btn-toolbar {
  margin-top: 0 !important;
  width: auto !important;
  padding: 8px 14px !important;
  font-size: 0.78rem !important;
}

.btn-restore {
  background: linear-gradient(180deg, #dbe4ea, var(--silver)) !important;
  color: var(--psu-navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.btn-restore:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-hudl-clear {
  background: linear-gradient(180deg, #ffb74d, #f57c00) !important;
  color: var(--psu-navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.btn-clear-db {
  background: linear-gradient(180deg, #ef5350, #c62828) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.toolbar-hint {
  margin: 6px 0 0;
  font-size: 0.8rem;
}

.muted {
  color: var(--silver);
  font-weight: 500;
}

.table-wrap {
  overflow: auto;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  max-height: 70vh;
}

.table-wrap.mini {
  max-height: 220px;
  margin-top: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

thead th {
  position: sticky;
  top: 0;
  background: var(--psu-navy-2);
  border-bottom: 1px solid var(--panel-border);
  text-align: left;
  padding: 10px 10px;
  color: var(--silver);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

thead th.sortable-th {
  padding: 0;
  vertical-align: middle;
}

.th-sort-btn {
  width: 100%;
  margin: 0;
  padding: 10px 10px;
  text-align: left;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  white-space: nowrap;
}

.th-sort-btn:hover {
  color: var(--white);
}

.th-sort-btn.active {
  color: var(--slime);
}

.sort-arrow {
  flex-shrink: 0;
  opacity: 0.55;
  font-size: 0.65rem;
  min-width: 1em;
  text-align: right;
}

.th-sort-btn.active .sort-arrow {
  opacity: 1;
}

tbody td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(162, 170, 173, 0.12);
  vertical-align: top;
}

tbody tr:hover td {
  background: rgba(101, 254, 8, 0.06);
}

.matt-toon {
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
}

.brand-row-profile {
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.panel-tabs-host {
  position: sticky;
  top: 10px;
}

.main-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
}

.main-tab {
  flex: 1;
  margin-top: 0 !important;
  padding: 10px 8px !important;
  font-size: 0.82rem !important;
  background: rgba(2, 8, 20, 0.55) !important;
  border: 1px solid var(--panel-border) !important;
  color: var(--muted) !important;
}

.main-tab.active {
  color: var(--psu-navy) !important;
  background: linear-gradient(180deg, var(--psu-gold), var(--psu-gold-dim)) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 0 16px rgba(232, 197, 71, 0.35);
}

.board-panel-title {
  cursor: default;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

.commit-filter-hint {
  margin-top: 6px;
}

.tab-panel {
  min-height: 120px;
}

.commit-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.commit-filter-select {
  flex: 1;
}

.commit-filter-logo {
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.06);
  object-fit: contain;
}

.commit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.commit-logo {
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.scout-report-area {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  line-height: 1.45;
  font-size: 0.9rem;
}

.tbl-logo {
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: contain;
}

.commit-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.commit-td {
  white-space: nowrap;
}

.row-psu-commit td {
  background: linear-gradient(
    90deg,
    rgba(232, 197, 71, 0.22),
    rgba(232, 197, 71, 0.08) 40%,
    rgba(2, 8, 20, 0.15)
  ) !important;
  box-shadow: inset 0 0 0 1px rgba(232, 197, 71, 0.45);
}

.row-psu-commit:hover td {
  background: linear-gradient(
    90deg,
    rgba(232, 197, 71, 0.32),
    rgba(232, 197, 71, 0.14) 45%,
    rgba(101, 254, 8, 0.08)
  ) !important;
}

body.profile-psu-commit {
  background:
    linear-gradient(180deg, rgba(232, 197, 71, 0.12) 0%, transparent 180px),
    radial-gradient(900px 500px at 12% 0%, #123a72 0%, var(--psu-navy) 45%, #020814 100%);
}

.profile-card-psu {
  border: 2px solid var(--psu-gold) !important;
  box-shadow:
    0 0 0 1px rgba(4, 30, 66, 0.8),
    0 0 28px rgba(232, 197, 71, 0.35);
}

.state-outline-wrap {
  margin: 10px 0 18px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.45);
  text-align: center;
}

.state-outline-img {
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.eval-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.55);
}

.eval-panel .btn-row {
  margin-top: 12px;
}

.eval-panel .btn-row button {
  flex: 1;
}

.eval-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eval-card {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(2, 8, 20, 0.35);
}

.eval-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.eval-card-head strong {
  font-size: 1rem;
  color: var(--white);
}

.eval-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.eval-report {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  white-space: pre-wrap;
}

.eval-grade-badge {
  font-family: "Graduate", "Georgia", serif;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
}

.eval-grade-red_x {
  border-color: #ff6b6b;
  color: #ffb3b3;
}

.eval-grade-yellow {
  border-color: #ffd54f;
  color: #ffe082;
}

.eval-grade-green_check {
  border-color: #69f0ae;
  color: #b9f6ca;
}

.eval-grade-blue_diamond {
  border-color: var(--psu-gold);
  color: #fff8e1;
  background: rgba(232, 197, 71, 0.12);
}

.import-progress {
  margin: 10px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.import-progress progress {
  width: 100%;
  height: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: rgba(4, 30, 66, 0.9);
}

.import-progress progress::-webkit-progress-bar {
  background: rgba(4, 30, 66, 0.9);
  border-radius: 8px;
}

.import-progress progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--slime-dim), var(--slime));
  border-radius: 8px;
}

.import-progress progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--slime-dim), var(--slime));
  border-radius: 8px;
}

.import-progress-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.import-progress > .import-progress-indeterminate {
  margin: 0;
}

.import-progress-indeterminate {
  margin: 10px 0 6px;
  height: 14px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: rgba(4, 30, 66, 0.9);
  overflow: hidden;
  position: relative;
}

.import-progress-indeterminate .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--slime-dim), var(--slime));
  animation: importProgressIndet 1.15s ease-in-out infinite;
}

@keyframes importProgressIndet {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(320%);
  }
}
