/* needed for Font Awesome */
/* https://www.w3schools.com/howto/howto_css_search_button.asp */
* {
  box-sizing: border-box;
}
body {
  background: #f2f2f2;
  font-family: 'Overpass', verdana;
  font-size: 18px;
  margin: 0;
}
#col_left {
  background: #e0e0d0;
  float: left;
  margin-right: 16px;
  padding: 10px;
  text-align: center;
  width: 180px;
}
#col_center {
  float: left;
  width: 80%;
}
.image_project {
  border: 1px solid #202020;
  margin-bottom; 6px;
  margin-top: 16px;
  width: 90%;
}
.header1 {
  background: #e0e0d0;
  border: 1px solid #808080;
  font-family: 'Chivo';
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 14px;
  padding: 6px;
}
.header2 {
  background: #d0d0e0;
  border: 1px solid #808080;
  float: center;
  font-family: 'Chivo';
  font-size: 18px;
  margin-bottom: 4px;
  margin-left: 8px;
  margin-top: 10px;
  padding: 6px;
}
#intro_text {
  font-size: 20px;
  line-height: 33px;
  margin: 24px;
  text-align: center;
}
#search_box {
  background: #f0f0d0;
  border: 1px solid #d0d0d0;
  float: left;
  /* let the search_box stretch to the height it wants to */
  /* height: 180px; */
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 5%;
  width: 42%;
}
input, select, textarea, button {
  font-family:inherit;
  font-size: 18px;
}
input[type="submit"] {
    margin-top: 10px;
}
form.search input[type=text] {
  padding: 10px;
  border: 1px solid grey;
  float: left;
  width: 300px;
  background: #f8f8f8;
}
form.search button {
  float: left;
  width: 50px;
  padding: 10px;
  /* background: #2196F3; */
  background: #f0f0d0;
  color: black;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}
form.search button:hover {
  background: #0b7dda;
}
form.search::after {
  content: "";
  clear: both;
  display: table;
}

/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_custom_select */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  float: left;
  width: 140px;
  margin-left: 1px;
  margin-right: 6px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  /* background-color: DodgerBlue; */
  /* background-color: #ffd; */
  background-color: #f0f0d0;
}
/* style the arrow inside the select element: */
.select-selected:after {
  border-color: black transparent transparent transparent;
  border-style: solid;
  border-width: 6px;
  content: "";
  height: 0;
  margin-right: 3px;
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  /* color: #ffffff; */
  color: #000;
  padding: 10px 16px;
  /* border: 1px solid transparent; */
  /* border: 1px solid gray; */
  /* border: 1px 1px 0px 1px solid gray; */
  /* border: 1px solid gray; */
  /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/
.select-items {
  background-color: #f0f0d0;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  /* background-color: rgba(0, 0, 0, 0.1); */
}

p {
  margin-left: 15px;
  margin-right: 15px;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.download {
  background: #f0f0d8;
  border: 2px solid green;
  display: inline;
  padding: 3px;
  padding-top: 4px;
  text-align: center;
  width: 100px;
}
a.download:hover {
  text-decoration: none;
  background: #f0c0c0;
  border: 2px solid #000000;
}
a.download:link {
  color: #000000;
}
a:link {
  color: #606000;
}
a:visited {
  color: #606000;
}
#news_box {
  margin: 6px;
  padding: 8px;
  height: 300px;
  overflow: scroll;
  background-color: #e0e0e0;
}
.news {
}
.news p {
}
.news_date {
  border-left: solid 2px black;
  border-top: solid 1px black;
  font-family: 'Chivo';
  font-size: 16px;
  font-weight: bold;
  margin-left: 4px;
  margin-top: 4px;
  padding-left: 6px;
  padding-top: 6px;
  width: 98%;
}
.footer {
  font-size: 12px;
}
#browse_box {
  background: #ffffe0;
  border: 1px solid #d0d0d0;
  float: right;
  font-size: 14px;
  height: 220px;
  margin-right: 5%;
  margin-top: 20px;
  text-align: center;
  width: 42%;
}
.search_row {
  border: 1px solid #d0d0d0;
}
.youtube_video {
  width: 280px;
  height: 210px;
}
.file_record {
  line-height: 150%;
}
.file_title {
  font-size: 17px;
  font-style: underline;
}
.file_name {
  font-family: courier;
  font-size: 16px;
}
.file_catalogged {
  font-size: 14px;
}
.file_size {
  font-size: 14px;
}
.file_author {
  color: #00a000;
}
.file_group {
  color: #0000a0;
}
.file_watch {
}
.file_rating {
}
.file_description {
}
