/* [project]/styles/globals.css [client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #06111f;
  --panel: #102236;
  --line: #274258;
  --text: #eef5ff;
  --muted: #8ea1b5;
  --gold: #e7bd4f;
  --gold2: #ba8e30;
  --teal: #23d6c6;
  --green: #35d081;
  --red: #ff646f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.btnline {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.btnline svg, .nav svg, .metric-icon svg {
  flex: none;
  width: 18px;
  height: 18px;
}

.brand-badge svg {
  width: 22px;
  height: 22px;
  transform: scaleX(-1);
}

.link-btn svg {
  width: 20px;
  height: 20px;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 78% 18%, #2268a633, #0000 34%), linear-gradient(135deg, #07101d, #09233a 58%, #061326);
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
}

button, .button-link {
  color: var(--text);
  cursor: pointer;
  background: #12263a;
  border: 1px solid #34536a;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 760;
}

.button-link {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

button:hover, .button-link:hover {
  filter: brightness(1.08);
}

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

button.primary, .button-link.primary {
  background: linear-gradient(180deg,var(--gold),var(--gold2));
  color: #171205;
  border-color: #e7c765;
  box-shadow: 0 12px 26px #e7bd4f2e;
}

button.ghost {
  background: #0d1d2e;
}

input, select, textarea {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--text);
  background: #0b1a2b;
  border-radius: 8px;
  outline: none;
  padding: 11px 12px;
}

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

label {
  color: #b9c7d5;
  gap: 7px;
  font-size: 13px;
  display: grid;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.error {
  color: var(--red);
  min-height: 20px;
  font-size: 13px;
}

.notice {
  z-index: 30;
  background: #0d2436;
  border: 1px solid #23d6c673;
  border-radius: 8px;
  padding: 12px 14px;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.notice-inline {
  background: #23d6c614;
  border: 1px solid #23d6c659;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 11px 14px;
}

.row {
  gap: 12px;
  display: grid;
}

.narrow {
  max-width: 560px;
}

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

.login-shell {
  grid-template-columns: minmax(0, 1fr) 430px;
  min-height: 100vh;
  display: grid;
}

.login-art {
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  display: flex;
}

.login-copy h1 {
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1;
}

.login-copy p {
  color: var(--muted);
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.brand {
  align-items: center;
  gap: 12px;
  display: flex;
}

.brand-badge {
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: #e7bd4f24;
  border: 1px solid #e7bd4f6b;
  border-radius: 11px;
  place-items: center;
  display: grid;
}

.brand strong {
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
  display: block;
}

.brand span {
  color: #b9c7d5;
  font-size: 13px;
  display: block;
}

.login-card {
  align-items: center;
  padding: 32px;
  display: flex;
}

.card, .panel {
  background: linear-gradient(#122a40eb, #09192aeb);
  border: 1px solid #52799773;
  border-radius: 8px;
  box-shadow: 0 22px 80px #00000047;
}

.card {
  width: 100%;
  padding: 22px;
}

.card h2, .panel h2, .box h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.app {
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.side {
  border-right: 1px solid var(--line);
  background: #05101dd1;
  flex-direction: column;
  height: 100vh;
  padding: 22px 12px;
  display: flex;
  position: sticky;
  top: 0;
}

.side .brand {
  padding: 0 12px 26px;
}

.nav {
  gap: 8px;
  display: grid;
}

.nav a {
  color: #b8c7d6;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 14px;
  text-decoration: none;
  display: flex;
}

.nav a.active {
  color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
  background: linear-gradient(90deg, #e7bd4f29, #46779b26);
}

.side-foot {
  border: 1px solid var(--line);
  background: #0b1a2b;
  border-radius: 8px;
  margin-top: auto;
  padding: 12px;
}

.avatar {
  background: #1a334c;
  border: 1px solid #3c5c75;
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
}

.shell {
  min-width: 0;
  padding: 26px 28px 56px;
}

.shell > header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  display: flex;
}

.crumb {
  color: #aac0d2;
  margin-bottom: 12px;
  font-size: 13px;
}

h1 {
  margin: 0 0 10px;
  font-size: 36px;
}

.title-row {
  align-items: center;
  gap: 12px;
  display: flex;
}

.meta {
  color: #9fb3c5;
  gap: 28px;
  font-size: 13px;
  display: flex;
}

.pill {
  border: 1px solid var(--line);
  background: #0b1d30;
  border-radius: 999px;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  font-size: 12px;
  display: inline-flex;
}

.green {
  color: var(--green);
  background: #35d0811a;
  border-color: #35d08173;
}

.red {
  color: var(--red);
  background: #ff646f1a;
  border-color: #ff646f73;
}

.blue {
  color: var(--teal);
  background: #23d6c61a;
  border-color: #23d6c666;
}

.gold {
  color: var(--gold);
  background: #e7bd4f1a;
  border-color: #e7bd4f73;
}

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

.metric {
  background: linear-gradient(135deg, #17324cf5, #0c1f34f5);
  border: 1px solid #5582a385;
  border-radius: 16px;
  min-height: 126px;
  padding: 19px;
}

.metric-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: #e7bd4f21;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 11px;
  display: grid;
}

.metric span {
  color: #a7b8c7;
  font-size: 13px;
  display: block;
}

.metric strong {
  margin: 7px 0 5px;
  font-size: 35px;
  display: block;
}

.metric small {
  color: #a7b8c7;
}

.panel {
  margin-bottom: 16px;
  padding: 18px;
}

.split {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.tri {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}

.toolbar {
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 10px;
  display: grid;
}

.info-list div {
  border-bottom: 1px solid #42607773;
  grid-template-columns: 140px 1fr;
  padding: 10px 0;
  font-size: 13px;
  display: grid;
}

.info-list div span:first-child {
  color: #91a6b8;
}

.table-wrap {
  overflow: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

th, td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #42607773;
  padding: 12px 10px;
}

th {
  color: #a7b9ca;
  background: #12263a;
  font-weight: 780;
}

tbody tr:hover {
  background: #ffffff06;
}

.link-btn {
  color: var(--teal);
  background: none;
  border: 0;
  padding: 3px;
}

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

.key-btn {
  padding: 7px 9px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.pager, .modal-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.modal {
  z-index: 20;
  background: #0000008a;
  place-items: center;
  padding: 18px;
  display: grid;
  position: fixed;
  inset: 0;
}

.box {
  background: linear-gradient(#11263b, #0c1f34);
  border: 1px solid #3b6079;
  border-radius: 16px;
  width: min(420px, 100%);
  padding: 20px;
  box-shadow: 0 24px 90px #00000094;
}

.box.key {
  width: min(530px, 100%);
}

.detail {
  margin-bottom: 16px;
}

.detail-row {
  border-bottom: 1px solid #42607773;
  grid-template-columns: 130px 1fr;
  padding: 10px 0;
  font-size: 13px;
  display: grid;
}

.detail-row span:first-child {
  color: #91a6b8;
}

@media (max-width: 980px) {
  .login-shell, .app, .split, .tri {
    grid-template-columns: 1fr;
  }

  .side {
    height: auto;
    position: static;
  }

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

  .login-art {
    padding: 32px;
  }

  .login-copy h1 {
    font-size: 40px;
  }
}

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

  .shell {
    padding: 18px;
  }

  .shell > header {
    flex-direction: column;
  }

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

.katanakky-toaster .katanakky-toast {
  color: var(--text) !important;
  background: linear-gradient(#122a40fa, #09192afa) !important;
  border: 1px solid #527997a6 !important;
  border-radius: 10px !important;
  box-shadow: 0 18px 48px #0000006b !important;
}

.katanakky-toaster .katanakky-toast-success {
  box-shadow: inset 3px 0 0 var(--green),0 18px 48px #0000006b !important;
  border-color: #35d0818c !important;
}

.katanakky-toaster .katanakky-toast-error {
  box-shadow: inset 3px 0 0 var(--red),0 18px 48px #0000006b !important;
  border-color: #ff646f94 !important;
}

.katanakky-toaster .katanakky-toast-title {
  color: var(--text) !important;
  font-weight: 720 !important;
}

.katanakky-toaster .katanakky-toast-success svg {
  color: var(--green) !important;
}

.katanakky-toaster .katanakky-toast-error svg {
  color: var(--red) !important;
}

.katanakky-toaster .katanakky-toast-close {
  color: #b9c7d5 !important;
  border-color: var(--line) !important;
  background: #0b1a2b !important;
}

/*# sourceMappingURL=styles_globals_1sjip1h.css.map*/