/* public/interactive.css - LOADS AFTER PAGE LOAD */

/* Link hover effects */
a {
  position: relative;
}

nav a::after,
.header a::after,
.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #a855f7;
  transition: width 0.3s ease;
}
a:hover::after {
  width: 100%;
}

/* Remove underline from button-style links */
a.no-underline::after,
a.hover\:no-underline:hover::after {
  display: none  ;
}

a.px-8.py-3::after {
  display: none  ;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.dark ::-webkit-scrollbar-track {
  background: #1f2937;
}

.dark ::-webkit-scrollbar-thumb {
  background: #4b5563;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}