/* CUSTOM SCROLLBAR OVERRIDES */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #111115;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.18s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Base custom styles */
body {
  background-color: #111115;
  color: #e4e4e7;
  font-family: 'Inter', sans-serif;
}

/* Custom inputs and select styling for dark theme options */
option {
  background-color: #18181b !important;
  color: #ffffff !important;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
