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 {
  margin-bottom: 60px;
}

/* Sticky first column for wide overview tables */
.overview-table th:first-child,
.overview-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
}

.overview-table thead th:first-child {
    background-color: #f8f9fa; /* matches Bootstrap table-light */
}

.overview-table tbody td:first-child {
    background-color: #fff;
    box-shadow: 2px 0 4px -1px rgba(0, 0, 0, .12);
}

/* Remove spinner arrows from number inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}