/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background-color: #27272a; /* var(--outline-variant) */
  border-radius: 9999px;
  border: 3px solid #09090b; /* var(--background) to create floating effect */
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #52525b; /* var(--outline) */
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: #27272a transparent;
}
