/* ============================================
   Pagination – eisradio.de
   Hauptfarben: #e78200 (Orange) + #650d88 (Lila)
   ============================================ */

form[method="post"] {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
  background: transparent;
}

.d-flex                  { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center      { align-items: center; }

.pagination {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0 !important;
}

.ms-0 { margin-left: 0 !important; }
.mb-4 { margin-bottom: 0 !important; }

/* --- Alle Page Links (Basis) --- */
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8125rem;
  color: #650d88;
  background: #fff;
  border: 1px solid #b87acc;
  border-radius: 0;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* --- Hover --- */
a.page-link:hover {
  background: #fde8c8;
  border-color: #e78200;
  color: #c46e00;
  text-decoration: none;
}

/* --- Aktive Seite --- */
.page-item.active .page-link {
  background: #e78200;
  border-color: #c46e00;
  color: #ffffff;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}

/* --- Deaktivierte Links --- */
.page-item.disabled .page-link {
  background: #f5f5f5;
  border-color: #ddd;
  color: #bbb;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Pfeil-Icons --- */
.page-link [class*="icon-angle"] {
  font-size: 0.75rem;
  line-height: 1;
}

/* --- Seitenzähler --- */
.joomcckPagesCounter {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8125rem;
  color: #650d88;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 480px) {
  .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-link {
    min-width: 1.8rem;
    height: 1.8rem;
    font-size: 0.75rem;
  }
}