/*
 * 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.
 */

@layer base {
  html {
    /* Subtle, thin scrollbars for a cleaner, app-like feel on Windows/Linux */
    scrollbar-width: thin;
    scrollbar-color: #E5E7EB transparent;
  }

  /* Custom scrollbar styling for Webkit (Chrome/Safari/Edge) */
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

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

  ::-webkit-scrollbar-thumb {
    background-color: #E5E7EB;
    border-radius: 20px;
    border: 1px solid transparent;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #D1D5DB;
  }
}
