/* Left Column Container */

.left-column {
  /* grid-column: 1 / 2; */
  /* grid-row: 1 / -1; */
  /* Already defined in mainbody.css  */

  margin-top: 35px;
  display: grid;
  grid-template-rows: auto;
  row-gap: 30px;
}

.ad-container {

  border: 2px dashed black;
  width: 80%;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  font-size: larger;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


table {
  border-collapse: collapse;
  border: none;
}

.qual-menu table {
  margin-left: auto;
  margin-right: auto;
  width: 80%;  
  vertical-align: top;
}


.qual-menu table th {
  background-color: orangered;
  color: white;
  font-size: medium;
  text-align: left;
  vertical-align: middle;
  padding-left: 10px;

}


.qual-menu tr {
  font-size: larger;
  font-weight: bold;
  background-color: bisque;
  height: 35px;
}


.qual-menu td a {
  color: black;
  padding-left: 10px;
  display: block;
  /* Makes the entire cell area clickable */
}


.qual-menu td:hover a,
.qual-menu td:hover {
  color: white;
  background-color: black;
}



