@import "tailwindcss";

@theme {
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-600: #475569;
  --color-slate-500: #64748b;
  --color-slate-200: #e2e8f0;
}

/* Base Styles */
@layer base {
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-slate-900);
    color: var(--color-slate-200);
  }
}

/* Custom Scrollbar Styles */
.custom-scrollbar::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background: var(--color-slate-800);
}

.custom-scrollbar::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  background: var(--color-slate-600);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
  background: var(--color-slate-500);
}
