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

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: light dark;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: light-dark(#333, #f8f9fa);
  background-color: light-dark(#fff, #212529);
}

input[type="text"], input[type="number"], select {
  font-size: 1rem;
}

.sortable-chosen {
  scale: 1.03;
  transition: scale 0.1s ease-in-out;
}

@media (scripting: enabled) {
  .nojs {
    display: none;
  }
}
