html {
  font-size: 14px;
}

:root {
  --xpressen-red: #b0171d;
  --xpressen-bg: #333;
  --xpressen-bg2: #2b2b2b;
  --xpressen-fg: #f0f0f0;
  --xpressen-surface: #444;
  --xpressen-surface-2: #555;
  --xpressen-muted: #ccc;
}

@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 rgba(255, 255, 255, 0.25), 0 0 0 0.25rem rgba(176, 23, 29, 0.35);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: var(--xpressen-bg);
  color: var(--xpressen-fg);
}

.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;
}

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination__item {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f2937; /* dark */
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .pagination__item:hover {
        background-color: #374151;
    }

.pagination__item--active {
    background-color: #2563eb; /* blue */
    color: white;
    font-weight: 600;
    cursor: default;
}

.pagination__item--nav {
    font-size: 18px;
    padding: 0 12px;
}

.pagination__item--disabled {
    opacity: 0.4;
    pointer-events: none;
}