@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

html {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --background: 255 255 255;
  --foreground: 17 17 17;

  --primary: 59 130 246;
  --primary-foreground: 255 255 255;

  --accent: 243 244 246;
  --accent-foreground: 17 17 17;
  --muted: 243 244 246;
  --border: 229 231 235;
  --input: 209 213 219;
  --ring: 59 130 246;
  --muted-foreground: 107 114 128;

  --spacing: 0.25rem;
  --sidebar-width: calc(var(--spacing) * 72);
  --sidebar-width-icon: 3rem;
  --header-height: calc(var(--spacing) * 12);
}

.dark {
  --background: 10 10 10;
  --foreground: 255 255 255;

  --primary: 147 197 253;
  --primary-foreground: 17 17 17;

  --accent: 38 38 38;
  --accent-foreground: 255 255 255;
  --muted: 31 31 31;
  --border: 38 38 38;
  --input: 56 56 56;
  --ring: 147 197 253;
  --muted-foreground: 156 163 175;
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff
}

.to-blue-100 {
    --tw-gradient-to: #dbeafe
}

.to-blue-200 {
    --tw-gradient-to: #bfdbfe
}

.to-blue-300 {
    --tw-gradient-to: #93c5fd
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6
}

.to-blue-600 {
    --tw-gradient-to: #0032FE
}

.to-blue-700 {
    --tw-gradient-to: #1d4ed8
}

.to-blue-800 {
    --tw-gradient-to: #1e40af
}

.to-blue-900 {
    --tw-gradient-to: #1e3a8a
}
body {
  background-color: rgb(var(--background));
  color: rgb(var(--foreground));
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: background 0.3s, color 0.3s;
}

input, button, label, p, a, div {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.font-sans {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.font-display {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

.bg-primary { background-color: rgb(var(--primary)); }
.text-primary-foreground { color: rgb(var(--primary-foreground)); }
.hover\:bg-primary\/90:hover { background-color: rgba(var(--primary), 0.9); }
.bg-background { background-color: rgb(var(--background)); }
.text-foreground { color: rgb(var(--foreground)); }
.bg-muted { background-color: rgb(var(--muted)); }
.border-border { border-color: rgb(var(--border)); }
.border-input { border-color: rgb(var(--input)); }
.text-muted-foreground { color: rgb(var(--muted-foreground)); }
.text-accent-foreground { color: rgb(var(--accent-foreground)); }
.hover\:bg-accent:hover { background-color: rgb(var(--accent)); }
.hover\:bg-accent\/50:hover { background-color: rgba(var(--accent), 0.5); }
.hover\:text-accent-foreground:hover { color: rgb(var(--accent-foreground)); }
.dark .border-input { border-color: rgb(var(--input)); }
.dark .bg-input\/30 { background-color: rgba(var(--input), 0.3); }
.dark .bg-input\/50 { background-color: rgba(var(--input), 0.5); }
.shadow-xs { box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08); }

[data-slot="sidebar-container"] {
  width: var(--sidebar-width) !important;
  z-index: 40;
}
[data-slot="sidebar-gap"] {
  width: var(--sidebar-width);
}
main[data-slot="sidebar-inset"] {
  margin-left: 0 !important;
  padding-top: var(--header-height);
}
@media (min-width: 768px) {
  main[data-slot="sidebar-inset"] {
    margin-left: var(--sidebar-width) !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
[data-slot="sidebar-wrapper"] {
  --header-height: 3rem;
}
header {
  position: fixed;
  top: 0;
  left: var(--sidebar-width, 0rem);
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgb(var(--border));
  background: rgb(var(--background));
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-color: rgb(var(--border));
}
.p-2 { padding: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
[data-slot="card"] {
  border: 1px solid rgb(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dark [data-slot="card"] {
  border-color: rgb(var(--border));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
button[data-active="true"] {
background-color: #0032FE;
}

/* Hide scrollbars globally */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}