td.highlite {
  background-color: yellow;
}

/* table details */
table {
  align-items: center;
  border: 2px solid rgb(140 140 140);
  height: 3rem;
  width: 17rem;	
  text-align: center;
//  table-layout: fixed; 
/*  background-color: white; */
}

th,
td {
  border: 1px solid rgb(160 160 160);  
  font-size: 2.1vw;       //vw;
  font-weight: 700;
  width: 100px;
//  overflow: visible;
/*  background-color: white; */	
}

.tablecell{
         font-size: 1.8rem;
  }

/* MyCount - counter for number of solutions found by the player */
#p1 {
  font-size: 3.8rem;
  font-weight: 200;
}

/* Drop down */
#mysolutions-select {
  display: flex;
  font-size: 1.4rem;
  font-weight: 200;  
  background-color: #EADDCA;
  width: 10rem;	
  float:center;
  overflow-y: auto;
}

/* Word box */

#word-board {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.word-box {
  border: 2px solid black;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 17rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background-color: #A3E4D7;
}

.word-row {
  display: flex;
}

/* keyboard related */

#keyboard-cont {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#keyboard-cont div {
  display: flex;
}

.second-row {
  margin: 0.5rem 0;
}

.keyboard-button {
  color: black;
  -webkit-appearance: none; 
  border-radius: 3px;
  border: 1px solid grey; 
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem;
  margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
}

.samelinebox {
  margin: 4px;  
  justify-content: center; //space-between;  
  align-items: center;
  display: flex;
}

/* needed for body and footer definition - see also html file */

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    margin: 0 auto 0;       
  background:white;
}
.footer, .push {
    height: 50px; /* .push must be the same height as .footer */
}

.footer{
  background: #C0C0C0;
  color: black; 
  }

/* pop up message related - toastr */

.toast-top-center {						/* center top of pop ups, needs to called before toast containers below */
   center:  0%; 
   left: 0%; 
   margin-left: 0%;   
}

#toast-container > .toast-success {			/* text colour of success message */
    background-image: none;
    background-color: green;       /* #008C00;			#e9e9e9; */
    color: white;
    opacity: 1;
}

#toast-container > .toast-warning {			/* text colour of warning message */
    background-image: none;
    color: black;
    opacity: 1;
}

#toast-container > .toast-info {			/* text colour of info message */
    background-image: none;
    background-color:  #808080;
    color: black;
    opacity: 1;
}

/* allows the image to scale to 80% of its width and height to be auto adjusted */
img {
  max-width: 80%;
  height: auto;
}
