/* some colors you may find useful:
  #115ff4
  #060ce9
  #28a200
  #8d2ab5
  #74119c
*/
body {
  background-color: rgba(191, 145, 255, 0.5);
}
h1 {
  color: rgb(43, 0, 255);
  text-transform: uppercase;
}
table {
  border-collapse: collapse;
  border: 0;
}
thead th,
tbody td {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}
thead tr:first-child th {
  border-top: 1.5px solid rgb(43, 0, 255);
}
thead th:first-child,
tbody td:first-child {
  border-left: 1.5px solid rgb(43, 0, 255);
}
thead th:last-child,
tbody td:last-child {
  border-right: 1.5px solid rgb(43, 0, 255);
}
tbody tr:last-child td {
 border-bottom: 1.5px solid rgb(43, 0, 255);
}
tbody {
  background-color: rgb(35, 0, 96);
  color: white;
}
thead th {
  background-color: pink;
  height: 50px;
  text-transform: uppercase;
}
tbody td {
  height: 100px;
}
thead th, tbody td {
  min-width: 160px;
  max-width: 160px;
  text-align: center;
  vertical-align: center;
  padding: 5px;
  font-size: 1rem;
  overflow-wrap: break-word;
}
button {
  width: 160px;
  background-color: pink;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgb(189, 176, 254);
}
 
#game {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading-spinner {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
}
.loading {
  background-color: rgb(189, 176, 254);
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);  /* Light grey border */
  border-top: 4px solid rgb(43, 0, 255); /* Blueish border for visibility */
  border-radius: 50%;
  width: 180px;
  height: 180px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gameBoard {
  text-align: center;
}