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;
}

.temple-page {
  max-width: 42rem;
  margin: 0 auto;
}

.temple-auth-form {
  max-width: 22rem;
}

.temple-steps {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.temple-steps li {
  margin-bottom: 0.65rem;
}

.temple-drop-zone {
  border: 2px dashed #6c757d;
  border-radius: 0.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  background: #f8f9fa;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.temple-drop-zone:hover,
.temple-drop-zone:focus,
.temple-drop-zone.is-dragover {
  border-color: #0d6efd;
  background: #e7f1ff;
  outline: none;
}

.temple-drop-zone.is-busy {
  opacity: 0.65;
  pointer-events: none;
}

.temple-drop-zone__title {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.temple-drop-zone__hint {
  margin-bottom: 0;
  color: #6c757d;
}

.temple-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.375rem;
}

.temple-status--pending {
  background: #e7f1ff;
  color: #084298;
}

.temple-status--success {
  background: #d1e7dd;
  color: #0f5132;
}

.temple-status--error {
  background: #f8d7da;
  color: #842029;
}

.temple-always-list {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

.temple-always-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.temple-always-item + .temple-always-item {
  border-top: 1px solid #eee;
}

.temple-always-add {
  max-width: 28rem;
}