#participantSearch {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

#participantSearch:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

#participantSearch::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.status-active {
  color: #4ade80;
}

.status-pending {
  color: #fbbf24;
}

.hidden-row {
  display: none;
}

#itemsPerPageSelect {
  transition: all 0.3s ease;
}

#itemsPerPageSelect:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

#itemsPerPageSelect option {
  background: #000;
  color: #fff;
}

#pagination button {
  transition: all 0.3s ease;
}

#pagination button:hover:not(:disabled) {
  transform: translateY(-1px);
}

#pagination button:active:not(:disabled) {
  transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  th,
  td {
    min-width: 160px;
    white-space: nowrap;
  }

  #participantSearch {
    width: 100%;
  }

  .overflow-x-auto {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  #itemsPerPageSelect {
    width: 100%;
    margin-bottom: 1rem;
  }

  #pagination {
    flex-wrap: wrap;
  }

  #pagination button {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {

  th,
  td {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}