@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700&display=swap");

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "League Spartan", sans-serif;
}

#output {
  width: 100%;
  height: 100%;
}

/* Backdrop filter support */
@supports (backdrop-filter: blur(8px)) {
  .backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* Toast animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.toast-enter {
  animation: slideInRight 0.3s ease-out;
}

.toast-exit {
  animation: slideOutRight 0.3s ease-in;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Ensure responsive design */
@media (max-width: 768px) {
  .bottom-nav-spacing {
    padding-bottom: 5rem;
  }
}

/* Set scrollbar to thin and indigo-200 color*/
/* ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #a0aec0;
}
::-webkit-scrollbar-thumb:active {
  background-color: #718096;
}
::-webkit-scrollbar-track:hover {
  background-color: #edf2f7;
}
::-webkit-scrollbar-track:active {
  background-color: #e2e8f0;
} */
