@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #020617;
  --primary: #2563eb;
  --card: #f8fafc;
  --border: #e2e8f0;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-primary: var(--primary);
  --color-card: var(--card);
  --color-border: var(--border);
  --font-sans: var(--font-inter);
  --font-hind: var(--font-hind-siliguri);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #020617;
    --foreground: #f8fafc;
    --primary: #3b82f6;
    --card: #0f172a;
    --border: #1e293b;
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-hind-siliguri), var(--font-inter), sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s, color 0.3s;
}

@layer components {
  .radial-progress {
    @apply transition-all duration-1000 ease-out;
    transform: rotate(-90deg);
  }
}
