body {
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  text-align: center;
  margin-top: 50px;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 5px;
  justify-content: center;
}

.cell {
  width: 100px;
  height: 100px;
  font-size: 2em;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cell:hover {
  background-color: #ddd;
}

#status {
  margin-top: 20px;
  font-size: 1.2em;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
}

ul {
  position: absolute;
  right: 30%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 10px;
  display: flex; /* this makes items go horizontally */
  gap: 10px; /* optional: adds spacing between items */
}

ul li {
  display: inline; /* or inline-block, though flex makes this unnecessary */
}

ul li a {
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  background-color: #d4cfcf;      /* Match your site background */
  border-radius: 999px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 4px 4px black;
  transition: all 0.2s ease;
  border: 2px solid red;                   /* Removes unwanted borders */
  outline: none;                  /* Removes focus outlines */
}

ul li a.active {
	background-color: #f7dcdc;
}