body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #4c4c4c;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid black;
  background-color: white;
}

nav {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  width: 90%;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
}

nav a {
  font-size: 1.7em;
  text-decoration: none;
  color: #4c4c4c;
}

nav a:visited {
  color: #4c4c4c;
  text-decoration: none;
}

.new-entry {
  display: block;
  float: right;
}

.container{
  margin-top: 51px;
}

.filter {
  margin-bottom: 20px;
  padding: 15px;
  background-color: lightgray;
}

.filter ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.filter li {
  display: inline;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}

.filter p{
  font-size: 0.9em;
}

.contain {
  display: flex;
  justify-content: space-between;
}

.contain .active{
  background-color: black;
  color: white;
}

.item {
  border-radius: 5px;
  padding: 10px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5%;
  background-color: #efefef;
  box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.2);
}

.item h1{
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.item img {
  width: 100%;
  display: block;
  margin: auto;
  border-radius: 5px;
}

.item .item-status {
  margin-top: 5px;
}

.main-item {
  border-radius: 5px;
  padding: 10px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5%;
}

.main-item h1{
  margin-bottom: 0;
}

.main-item img {
  width: 100%;
  display: block;
  margin: auto;
  border-radius: 5px;
}

.main-item .item-status {
  margin-top: 5px;
}

.date-time {
  margin-top: 0;
  font-size: 0.9em;
  color: gray;
}

.item-button {
  display: inline-block;
  text-decoration: none;
  border: 1px solid black;
  color: black;
  padding: 3%;
}

.claim-button:visited {

}

.click-content {
  text-decoration: none;
  color: black;
  display: block;
}

.more-info {
  float: right;
  color: black;
}

.item-content {
  width: 90%;
  margin: 0 auto;
}

.item-status {
  margin-bottom: 5%;
}

.item-status span{
  padding: 2px 5px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.item-lost{
  color: red;
  background-color: #ffb4b4;
}
  
.item-found{
  color: green;
  background-color: #8ae48a;
}

.new-entry {
  cursor: pointer;
  letter-spacing: 0.05em;
}

.new-entry-form, h2 {
  width: 90%;
  margin: 0 auto;
}

.new-entry-form {
  padding: 5%;
}

.new-entry-form input[type="radio"]{
  display: none;
} 

form input{
  width: 100%;
  border: none;
  font-size: 15px;
  border-bottom: 1px solid #4c4c4c;
}

form label, form button {
  display: block;
  margin-bottom: 1%;
  margin-top: 5%;
}

form button {
  width: 90px;
  height: 30px;
  color: white;
  font-size: 15px;
  background-color: #4c4c4c;
  border: 1px solid #4c4c4c;
  border-radius: 2px;
}

#label-lost, #label-found{
  display: inline-block;
  width: 25%;
  text-align: center;
  padding: 1%;
  cursor: pointer;
  border-radius: 5px;
  /*border: 1px solid black;*/
}

input[type=radio]:checked + #label-lost {
  background-color: #ff5656;
  color: white;
}

input[type=radio]:checked + #label-found {
  background-color: #01de6e;
  color: white;
}

.form{
  padding-top: 5%;
  color: #4c4c4c;
}

.form-details {
  margin-top: 0px;
  font-size: 12px;
  color: gray;
}

.reduce-font {
  display: none;
}

.plus-sign {
  display: inline;
}

.search-bar {
  display: none;
}

.hide {
  display: none;
}

.search-error-message {
  text-align: center;
}

@media screen and (min-width: 1024px) {

  .items {
    margin: 0 auto;
    width: 90%;
  }

  .item {
    display: inline-block;
    width: 25%;
  }

  .main-item {
    width: 30%;
  }

  .filter {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 3%;
    text-align: center;
  }

  .filter li:hover {
    cursor: pointer;
  }

  .filter p {
    margin-top: 0;
  }

  .row {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    justify-content: space-between;
  }

  .reduce-font {
    font-size: 60%;
    display: inline;
  }

  .plus-sign {
    display: none;
  }
  
  /* report.php */

  .container.report {
    width: 50%;
    margin: 0 auto;
    margin-top: 51px;  
  }

  .new-entry-form {
    padding: 0;
  }
}

/* more-info.php */

.main-item {

}

/* report.php */

.container.report {

}