html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Focus states */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0000.1rem var(--bs-body-bg), 0000.25rem #258cfb;
}

/* Tables */
.table td, .table th {
  vertical-align: middle;
}

.table thead th {
  color: var(--bs-secondary-color);
  font-weight: 600;
}

.table tbody tr:hover {
  background-color: rgba(0, 0, 0, .03);
}

/* Cards & spacing */
.card {
  border-radius: .75rem;
}

.card-header {
  background: var(--bs-body-bg);
}

/* Utility */
.order-handle {
  cursor: grab;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bs-secondary-color);
}

.empty-state i {
  font-size: 2rem;
}

/* Theme toggle button sizing */
#themeToggle {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}