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

/* We can control the order that css is loaded in a given view using link style sheets
<%= stylesheet_link_tag "loaded_first", "data-turbo-track": "reload" %>
<%= stylesheet_link_tag "loaded_second", "data-turbo-track": "reload" %>
*/

.body-overrides {
  font-family: Arial;
  scrollbar-width: 6px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #979797;
  border-radius: 6px;
}

.turbo-progress-bar {
  background: black;
}