/* this box contains the dashboard's sidebar of available project names */
#project_name_box {

height: 100vh;
overflow-y: scroll;

}


/* Selects any <a> that has been visited */
a:visited {
  color: #434360;
}



.list {
  font-family:sans-serif;
  margin:0;
  padding:10px 0 0;
}
.list > li {
  display:block;
  background-color: #DDDDD2;
  padding:.6em;
  box-shadow: inset 0 1px 0 #EFEFE5;
}


.list li:hover {
	background-color:#CBCAB3;
}

.list > a {
  display:block;
  background-color: #eee;
  padding:10px;
  box-shadow: inset 0 1px 0 #fff;
}

.list a:link { color: #3C447A; }

.list a:hover {
	text-decoration: none;#7085A8
}

input {
  margin: .65em;
  width: 80%;
  border:solid 1px #ccc;
  border-radius: 5px;
  padding: 4px;
}

input:focus {
  outline:none;
  border-color:#aaa;
}
.sort {
  padding:8px 30px;
  border-radius: 6px;
  border:none;
  display:inline-block;
  color:#fff;
  text-decoration: none;
  background-color: #28a8e0;
  height:30px;
}
.sort:hover {
  text-decoration: none;
  background-color:#1b8aba;
}
.sort:focus {
  outline:none;
}
.sort:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}
.sort.asc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  content:"";
  position: relative;
  top:13px;
  right:-5px;
}
.sort.desc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}