body {
  font-family: sans-serif;
  margin: 20px;
  background-color: #f9f9f9;
  color: #333;
}

nav {
  margin-bottom: 20px;
}

nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #0366d6;
}

nav a:hover {
  text-decoration: underline;
}

nav a[style*="font-weight:bold"] {
  color: black;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

.vote {
  background: none;
  border: none;
  font-size: 1.4em;
  cursor: pointer;
  opacity: 0.6;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.vote.selected {
  opacity: 1;
  transform: scale(1.3);
}

.vote.small {
  opacity: 0.3;
  transform: scale(0.7);
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  text-decoration: none;
  color: #333;
}

.pagination .current {
  font-weight: bold;
  background-color: #ddd;
}

.clickable {
  text-decoration: underline;
  cursor: pointer;
}
