
/* Search */

.search-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0; /* Positoning */
  top: 0; /* Positoning */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: scroll; /* Enable scroll if needed */
  cursor: pointer;
  background-color: rgba(25, 25, 30, 0.75);
}

.search-box {
  background-color: rgb(30, 30, 35);
  border: 1px solid #323237;
  border-radius: 10px;
}

#search-value {
  border-color: rgb(50, 50, 55);
  background-color: rgba(15, 15, 20);
  color: #c8c8c8;
  height: 40px;
}

.catagory {
  background-color: rgba(25, 25, 30, 0.9);
  border: 1px solid #323237;
  padding: 4px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}

.catagory-selected {
  background-color: rgba(55, 55, 60, 0.9);
}

.emphasize {
  color: white
}
.deemphasize {
  color:rgb(150, 150, 155);
}