@font-face{
  font-family: "Jost";
  src: url("/static/fonts/Jost-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face{
  font-family: "Jost";
  src: url("/static/fonts/Jost-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root{
  --bg:#0f1923;
  --bg-deep:#0b1219;
  --panel:rgba(20,32,46,.92);
  --panel-strong:rgba(26,40,58,.96);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.90);
  --muted:rgba(255,255,255,.58);
  --muted-2:rgba(255,255,255,.40);
  --accent:#aac700;
  --accent-2:#c5e000;
  --danger:#ef4444;
  --shadow:0 10px 28px rgba(0,0,0,.40);
  --shadow-soft:0 6px 18px rgba(0,0,0,.28);
  --radius:6px;
  --radius-sm:4px;
  --ring:0 0 0 3px rgba(170,199,0,.28);
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-brand: "Jost", Arial, sans-serif;
}

*{ box-sizing:border-box; }

html{
  background: var(--bg-deep);
}

body{
  color: var(--text);
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  background: linear-gradient(160deg, #111e2b 0%, var(--bg) 40%, var(--bg-deep) 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body, input, button, select, textarea{
  font-family: var(--font-sans);
}

::selection{
  background: rgba(170,199,0,.28);
  color: rgba(255,255,255,.96);
}

a{
  color: inherit;
}

button,
input,
select,
textarea{
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .08s ease;
}

button,
.btn,
.print-btn{
  border-radius: 6px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
.btn:focus-visible,
.print-btn:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track{
  background: rgba(255,255,255,.08);
}

::-webkit-scrollbar-thumb{
  background: rgba(170,199,0,.55);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*{
  scrollbar-width: thin;
  scrollbar-color: rgba(170,199,0,.50) rgba(255,255,255,.06);
}

.companyPicker::after{
  content: none !important;
}

.cardHeader > .muted,
.labelRow > .muted,
.hint,
.hint-block,
.inlineBadge{
  display: none !important;
}
