/* Example: Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #989cbe;
}

/* Example: Custom focus styles */
*:focus {
  outline: none;
}

/* Example: Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

body {
  font-family: "Geist", sans-serif;
}
