/**
 * Shared CSS Utilities
 * Common CSS classes and styles used across multiple pages
 */

/* Themed Scrollbar - applies consistent scrollbar styling */
.scrollbar-themed::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-themed::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar-themed::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.scrollbar-themed::-webkit-scrollbar-thumb:hover {
  background: var(--heading-color);
}

/* No transitions utility - prevents transition flashing during theme changes */
body.no-transitions,
body.no-transitions * {
  transition: none !important;
}
