/* Global overrides: align brand + selection + pagination */

/* Brand primary color (replaces any legacy red accents) */
:root {
  --system_primery_color: #0d6efd !important;
}

/* Text selection color */
::selection {
  background: #0d6efd;
  color: #fff;
}
::-moz-selection {
  background: #0d6efd;
  color: #fff;
}

/* Pagination active/hover colors to match brand (remove red) */
.pagination .page-item.active .page-link,
.pagination .page-link:focus,
.pagination .page-link:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* New pagination component */
.paginations .paginations-links.active,
.paginations .paginations-links:hover,
.paginations .prev:hover,
.paginations .next:hover {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #fff !important;
}

/* Ensure header login buttons look consistent everywhere */
.login_action_btn {
  gap: 6px;
}
