body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.container {
  flex: 1;
}

.hidden {
  display: none;
}

.answer.card {
  border-left: 4px solid var(--bs-primary);
}

.answer-preview {
  margin-top: 0.75rem;
}

/* Helpful utility for landing/auth pages to appear centered without overflow */
.vh-pad {
  padding-top: 24vh;
  padding-bottom: 16vh;
}

/* Review image zoom toggle */
.review-img {
  max-height: 200px;
  cursor: zoom-in;
}
.review-img.expanded {
  max-height: none;
  width: 100%;
  height: auto;
  cursor: zoom-out;
}

/* Click-to-zoom for previews on forms */
.click-zoom {
  max-height: 160px;
  cursor: zoom-in;
}
.click-zoom.expanded {
  max-height: none;
  width: 100%;
  height: auto;
  cursor: zoom-out;
}
.preview-item.expanded {
  max-width: 100% !important;
  width: 100%;
  flex: 0 0 100%;
}

.bulk-actions {
  gap: 0.75rem;
}
.bulk-actions .btn,
.bulk-actions select,
.bulk-actions input {
  height: 34px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .bulk-actions .btn,
  .bulk-actions select,
  .bulk-actions input {
    width: 100%;
  }
}
