html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: rgb(250,250,250);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.badge-low {
    background-color: rgb(0,188,212);
    color: white;
}

.badge-normal {
    background-color: rgb(0,200,83);
    color: white;
}

.badge-stage1 {
    background-color: rgb(255,193,7);
    color: white;
}

.badge-stage2 {
    background-color: rgb(255,152,0);
    color: white;
}

.badge-crisis {
    background-color: rgb(255,87,34);
    color: white;
}

@media (min-width: 1920px) {
    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%; /* Equivalent to col-10 */
    }
}