:root {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --border: rgb(255 255 255 / 0.1);
  --muted-foreground: #a1a1aa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Geist Variable', ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-background {
  background: var(--background);
}

.border-border {
  border-color: var(--border);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.h-full {
  height: 100%;
}

.h-dvh {
  height: 100dvh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.h-12 {
  height: 3rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 0.75rem;
}

.px-4 {
  padding-inline: 1rem;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.w-full {
  width: 100%;
}

.flex-1 {
  flex: 1;
}

.border-0 {
  border: 0;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-mono {
  font-family: 'JetBrains Mono Variable', ui-monospace, monospace;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.transition-colors {
  transition: color 0.15s ease;
}

.hover\:text-foreground:hover {
  color: var(--foreground);
}
