:root {
  --navy: #102a4c;
  --navy-hover: #183e6c;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --bg: #f2f5f9;
  --panel: #ffffff;
  --border: #d8e0ea;
  --border-dark: #b8c3d1;
  --text: #1d2939;
  --muted: #667085;
  --success: #137333;
  --warning: #9a6700;
  --danger: #b42318;
  --info: #175cd3;
  --sidebar-width: 230px;
  --topbar-height: 58px;
  --statusbar-height: 26px;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; }
body { overflow: hidden; background: var(--bg); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
input, select, textarea {
  min-height: 32px;
  padding: 5px 8px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
}
textarea { min-height: 76px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus-visible {
  outline: 2px solid rgba(37, 99, 235, .28);
  outline-offset: 1px;
  border-color: var(--blue);
}
h1, h2, h3, p { margin-top: 0; }
.muted { color: var(--muted); }
.danger-text { color: var(--danger); }
.nowrap { white-space: nowrap; }
.mt-6 { margin-top: 6px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mb-10 { margin-bottom: 10px; }
.my-10 { margin-top: 10px; margin-bottom: 10px; }
.micro-note { margin-top: 3px; font-size: 9px; }
[hidden] { display: none !important; }
