/* Custom scrollbar styling for webkit browsers */
.scrollbar-thin::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Firefox scrollbar styling */
.scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
}

/* Transparent navigation arrow styling */
.nav-arrow {
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.nav-arrow:active {
  transform: scale(0.95);
}

/* Mobile navigation buttons */
.mobile-nav-btn {
  transition: all 0.3s ease;
}

.mobile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.mobile-nav-btn:active {
  transform: scale(0.98);
}