.admin-container {
  width: 100%;
  max-width: 640px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

#voteTable {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  border-bottom: 1px solid var(--glass-border);
  padding: 16px;
  text-align: left;
  color: var(--text-primary);
}

th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .admin-container {
    padding: 10px;
    max-width: 100%;
  }
  th, td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}