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;
}

.choice-card {
  transition: transform .15s ease, box-shadow .15s ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.12) !important;
}

.file-badge {
  display: inline-block;
  padding: 2px 8px;
  margin: 2px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 3px;
  font-size: .8rem;
  text-decoration: none;
}
.file-badge:hover { background-color: #084298; color: #fff; }

.status-badge { padding: 2px 8px; border-radius: 10px; font-size: .8rem; }
.status-pending { background-color: #fff3cd; color: #664d03; }
.status-completed { background-color: #d1e7dd; color: #0f5132; }
.status-cancelled { background-color: #f8d7da; color: #842029; }