#ataxx_table td {width: 6em; height:6em;
    border:1px solid black;text-align:center;}
#ataxx_table {border-collapse: collapse;}

TD.W_square {background-color:#5491c0;}

IMG.piece {width: 5em; height:5em;}

TD.pmove {border:3px solid rgb(49, 222, 205); background-color:rgb(49, 222, 205);}
TD.tomove {border:3px solid rgb(4, 124, 193); background-color:rgb(4, 124, 193);}

  .content {
    text-align: center;
    color: white;  /* Make sure text is visible over the background */
    padding: 20px;
  }


#container {
    display: flex;              
    justify-content: center;    
    align-items: center;        
                
  }
 

 .row{
    display: flex;              
    justify-content: center;    
    align-items: center;        
    height: 10vh;
    
 }

 .column {
    float: left;
    margin-top: -60px;
  }

  #scoreboard{
    float:right;
    background-color: #5491c0c5;
    width: 300px;
    position: relative;
    top: -230px;
    padding-left: 100px;
    font-size: 24px;
    
  }


.show-paragraph-button {
  padding: 10px 20px;
  background-color: #5491c0c5;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative; 
  z-index: 2; /* Ensure the button stays above the paragraph */
}

/* Initially hide the paragraph */
.hidden-paragraph {
  display: none;
  margin-top: 10px;
  font-size: 20px;
  color: #333;
  background-color: #5491c0c5;
  position: absolute;
  top: 100%; 
  right: 10%; 
  z-index: 1; 
  width: 600px;
}

/* Button hover effect */
.show-paragraph-button:hover + .hidden-paragraph {
  display: block; /* Show the paragraph when the button is hovered */
}

/* Position the button and paragraph in the top-left corner */
.howto {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}