/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00ffff, #9d4edd);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #00e5e5, #8b3dcc);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent text selection on buttons */
button, .button {
  user-select: none;
}

/* Focus visible for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

/* Form input placeholder */
input::placeholder, textarea::placeholder {
  color: rgba(156, 163, 175, 0.5);
}

/* Ensure footer stays at bottom */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}
