/* static/tailwind.css */

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  /* Equivalent to bg-gray-50 text-gray-900 */
  background-color: #f9fafb;
  color: #111827;
}

/* Utilities for full-height layout */
.h-marketing {
  height: calc(100vh - 64px);
}

/* Monaco Editor Overrides */
.monaco-editor .margin {
  background-color: transparent !important;
}