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

/* === MECHA THEME (Brighter Grey + Lime Neon) === */
:root {
    --mecha-grey-lightest: #f2f2f2;
    --mecha-grey-light: #e0e0e0;
    --mecha-grey-mid: #c0c0c0;
    --mecha-line: #a0a0a0;
    --mecha-text: #1a1a1a;
    --mecha-lime: #b6ff00;
    /* Bootstrap mappings */
    --bs-body-bg: var(--mecha-grey-lightest);
    --bs-body-color: var(--mecha-text);
    --bs-primary: var(--mecha-lime);
    --bs-link-color: var(--mecha-lime);
    --bs-link-hover-color: #99ff00;
}

/* Body gradient */
body {
    background: linear-gradient(180deg, var(--mecha-grey-lightest) 0%, var(--mecha-grey-light) 100%);
    color: var(--mecha-text);
}

.pagination {
    flex-wrap: wrap;
}