table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto;
  margin-top: 55px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  table-layout: fixed;
}

th, td {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  font-family: 'CustomFont3', sans-serif;
  font-size: 25px;
}

th {
  background: rgba(0, 0, 0, 0.9);
  font-weight: bold;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* ----ПАГИНАЦИЯ---- */
/* ----ПАГИНАЦИЯ---- */
/* ----ПАГИНАЦИЯ---- */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination a {
  color: white;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 0, 100, 0.4);
  padding: 6px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'CustomFont1', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 0, 100, 0.3);
}

.pagination a:hover {
  background: rgba(255, 0, 100, 0.7);
  box-shadow: 
    0 0 8px rgba(255, 0, 100, 0.5),
    0 0 16px rgba(0, 128, 255, 0.5);
  transform: scale(1.05);
}

.pagination a.active {
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 255, 0.8), rgba(0, 128, 255, 0.8), rgba(255, 0, 0, 0.8));
  background-size: 300% 100%;
  animation: glow-move 4s linear infinite;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 0 8px rgba(255, 0, 100, 0.6),
    0 0 16px rgba(0, 128, 255, 0.5);
  font-weight: bold;
  transform: scale(1.1);
  border-radius: 6px;
}
.pagination .dots {
  color: #888;
  padding: 6px 10px;
  font-size: 16px;
  font-family: monospace;
}

.pagination .arrow {
  font-weight: bold;
}

/* АНИМАЦИИ */

@keyframes glow-move {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}
/*-------GLOW FOR BANS------------*/

@keyframes neon-glow {
  0% {
    background-color: rgba(255, 0, 100, 0.1);
    box-shadow: 0 0 10px rgba(255, 0, 100, 0.5);
  }
  50% {
    background-color: rgba(0, 128, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.6);
  }
  100% {
    background-color: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }
}

.highlighted-row {
  animation: neon-glow 4s ease-in-out infinite;
  transition: background-color 0.3s;
}

table {
  table-layout: fixed;
}

table td, table th {
  vertical-align: top;
}

