body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: left;
    align-items: left;
  }
  
  .status {
    font-size: 20px;
    font-weight: bold;
  }
  
  .board-row {
    display: flex;
  }

  .square {
    border: 1px solid black;
    width: 50px;
    height: 50px;
    background-color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .square:hover {
    background-color: gray;
  }