/* Set height of body and the document to 100% to enable "full page tabs" */
body, html {
  height: 100%;
  margin: 0;
  font-family: Arial;
  background-color: DarkCyan;
}

.collapse{
  cursor: pointer;
  display: block;
  /* background: #cdf; */
}
.collapse + input{
  display: none; /* hide the checkboxes */
}
.collapse + input + div{
  display:none;
}
.collapse + input:checked + div{
  display:block;
}

.collapse:hover{
 color: #555;
}

/* Table CSS */

table {
  margin: 0;
  padding: 0;
  width: 70%;
  table-layout: auto;
  border-spacing: 0 5px;
}


.button {
  background-color: #555;
  border: none;
  color: white;
  padding: 15px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  
 }

.button:hover {
  background-color: #777;
}



/* Style tab links */
.tablink {
  background-color: #555;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: white;
  display: none;
  padding: 100px 20px;
  height: 100%;
}

/* The Evaluators List Modal window  */
.evaluatorslistmodal {
  display: none; /* Hidden by default */
  position: fixed;  /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 10%;
  top: 10%;
  width: 80%; 
  height: 65%; 
  /*text-align: center;*/
  overflow: auto; 
  background-color: white; 
  border: 3px solid black;
  /* background-color: rgba(0,0,0,0.4); */
}


/* The Modal window  */
.modal {
  display: none; /* Hidden by default */
  position: fixed;  /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 40%;
  top: 30%;
  width: 15%; 
  height: 8%; 
  text-align: center;
  overflow: auto; 
  background-color: Gray; 
  border: 3px solid black;
 }

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-right: 15px;
 }

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


#PersonalData {background-color: DarkCyan;}
#Studies {background-color: DarkCyan;}
#Placement {background-color: DarkCyan;}
#Financials {background-color: DarkCyan;}
#IKY{background-color: DarkCyan;}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
