/* style.css */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
th {
  background: #f5f5f5;
}
a {
  text-decoration: none;
  color: #0066cc;
}
a:hover {
  text-decoration: underline;
}

/* チェックされたセルだけ緑色に */
td.participated {
  background-color: #dff0d8;
}

/* ホバー効果：未チェックセルのみ薄グレー */
tbody tr:hover td:not(.participated) {
  background-color: #f0f0f0;
  cursor: pointer;
}
