.school {
  color: #000;
  width: auto;
  background-image: linear-gradient(white, white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 110%;
  text-align: center;
  margin: 2%;
  display: block;
  
  border-radius: 0px;
  border-bottom: solid white 1px;
  border-top:  solid gray 1px;/* linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(191,191,191,1) 50%, rgba(255,255,255,1) 100%) 5px; */
  padding: 2px;
  height: auto; 
  margin-left: 18%;
  font-size:150%;
}

/* Style page content */

.data a:link {
  color: #333;
  text-decoration: none;
  font-size: 150%;
}

.data a:visited {
  color: #333;
  text-decoration: none;
}

.data a:hover {
  color: #D39F72;
  text-decoration: none;
}

.row {
  display: flex;
  text-align: left;
  padding: 10px;
  margin: 10px;
}

.column {
  flex: 50%;
  padding: 5px;
}

.sidenav {
  width: 14%; /* Set the width of the sidebar */
  height: calc(100vh - 3.5vw);
  position: fixed; /* absolute; */
  margin-top: auto;
  top: 3.5vw;
  background-color: #F9F9F9; 
  border-right: solid #ddd;
  padding-top: 1%;
  padding-left: 2%;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: auto;
  padding-bottom: 5vw;
  font-size: 120%;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 120%; /* 16px; */
  color: #333;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #D39F72;
}


/* Responsive layout */

/* Hide the link that should open and close the topnav on small screens */
.sidenav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 800px) {
  .school {
    margin-left: 1%;
  }
  .sidenav {display: none;}
  .sidenav a.icon {
    float: left;
    display: block;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
  }
  .sidenav a:hover{
    color: black;
  }
}

/* The "responsive1" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 800px) {
  .sidenav.responsive1 {position: relative;}
  .sidenav.responsive1 a.icon {
    position: absolute;
    right: 5%;
    top: 0;
  }
  .sidenav.responsive1 {
    float: right;
    display: block;
    text-align: left;
    width: 100%
  }
}


#searchbar{
    margin-right: 25px;
    margin-left:auto;
    margin-top: auto;
    margin-bottom: 10px;
    float: right;
    padding:15px;
    border-radius: 10px;
  }

  input[type=text] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
  }

  /* When the input field gets focus,
      change its width to 100% */
  input[type=text]:focus {
    width: 30%;
  }

table, th, td {
  border: 0px;
  font-size: 100%;
}
