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

/*
 * Base structure
 */

html {
  box-sizing: border-box;
  color-scheme: light dark;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.notice {
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
}

/* By default, hide the "Enabled" text */
.form-check-input~.form-check-label .switch-on {
  display: none;
}

/* When checkbox is checked, show "Enabled" and hide "Disabled" */
.form-check-input:checked~.form-check-label .switch-on {
  display: inline;
}

.form-check-input:checked~.form-check-label .switch-off {
  display: none;
}
