/* ─────────────────────────────────────────────────────────────────────────────
   BTools - WP AutoFill  |  Custom styles
   Extends Bootstrap 5.  Keep additions minimal.
───────────────────────────────────────────────────────────────────────────── */

/* Smooth page load */
body {
  opacity: 0;
  animation: fadeIn 0.25s ease-in forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Navbar brand accent */
.navbar-brand {
  letter-spacing: 0.02em;
}

/* Cards */
.card {
  border-radius: 0.75rem;
  transition: box-shadow 0.15s ease;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Table */
.table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
}

/* Monospace inputs (secret key field) */
.font-monospace {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
}

/* Log list items — tighter padding */
.list-group-item {
  font-size: 0.83rem;
}

/* Loading spinner shown by JS during form submit */
#loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#loading-overlay.active {
  display: flex;
}

/* Make footer stick to bottom on short pages */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
