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;
}

.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;
}

/* Ignore/un-ignore band toggle: stays out of the way until you hover the row it's in,
   so a gig or band list with many bands doesn't look cluttered by default. */
.ignore-band-btn {
  opacity: 0;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out;
  font-size: 0.75em;
  color: var(--bs-secondary-color, #6c757d);
  background: none;
  border: none;
  padding: 0 0.15em;
  line-height: 1;
  vertical-align: middle;
}

.list-group-item:hover .ignore-band-btn,
tr:hover .ignore-band-btn,
h1:hover .ignore-band-btn {
  opacity: 0.55;
}

.ignore-band-btn:hover {
  opacity: 1 !important;
  color: #dc3545;
}

.ignore-band-btn.is-ignored {
  opacity: 0.4;
}

.ignore-band-btn.is-ignored:hover {
  color: #198754;
}