/* Custom variables and tweaks */
html {
  background-color: #0a0a0a;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Custom borders */
.border-neutral-850 {
  border-color: rgba(64, 64, 64, 0.4);
}

/* Form inputs styling on focus */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.8) !important;
}

/* Dropzone dragover class */
.dragover {
  border-color: rgba(245, 158, 11, 0.8) !important;
  background-color: rgba(245, 158, 11, 0.05) !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333;
}
