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

/* Prevent content shift when scrollbar appears */
/* Apply only to main content area with overflow, not globally */
main.overflow-y-auto {
  scrollbar-gutter: stable;
}
.status-red {
  background: rgba(255, 0, 0, 0.3);
}
.status-green {
  background: rgba(0, 128, 0, 0.3)
}
.status-yellow {
  background: rgba(255, 255, 0, 0.3);
}
.status-graphite {
  background: rgba(56, 52, 40, 0.18);
}

/* Hide default details/summary marker */
details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::marker {
  display: none;
}