:root {
  --bg-primary: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #f3eee8;
  --border: #ded4c8;
  --text-primary: #201c18;
  --text-secondary: #5f5751;
  --text-muted: #867d74;
  --accent-ninja: #e8610a;
  --teal: #008fd6;
  --purple: #6f675f;
  --mint: #00a96e;
  --severity-critical: #e1063a;
  --severity-high: #e75a00;
  --severity-medium: #f2aa00;
  --severity-low: #008fd6;
  --radius: 10px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
}

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

.app-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

button {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

button:hover {
  transform: translateY(-1px);
}

#root > div {
  padding: 0 !important;
}

#root > div > div {
  max-width: none !important;
  margin: 0 !important;
}

#root > div > div > div:first-child {
  background:
    linear-gradient(180deg, #f29d1d 0%, #ea8c0a 100%),
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px) !important;
  background-size: auto, 48px 48px, 48px 48px !important;
  border-bottom: 1px solid rgba(32, 28, 24, 0.18) !important;
  padding: 12px 24px !important;
  margin-bottom: 24px !important;
  gap: 16px !important;
}

#root > div > div > div:first-child > div:first-child > div:first-child {
  color: #201c18 !important;
  font-size: 22px !important;
  margin-bottom: 4px !important;
}

#root > div > div > div:first-child > div:first-child > div:last-child {
  color: rgba(32, 28, 24, 0.72) !important;
}

#root > div > div > :not(:first-child) {
  max-width: 1600px;
  margin-left: auto !important;
  margin-right: auto !important;
}
