.search-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  }

.search-modal-content {
  background-color: #e5e4e2;
  margin: 15% auto;
  padding: 20px;
  border: 2px solid #888;
  width: 50%;
  border-radius:10px;
}

.dark-mode  .search-modal-content {
    background-color: #222222;
  }

.search-modal-close {
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  float: right;
  padding: 10px 0px 10px 5px;
}

#search {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .search-modal-content {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .search-modal-content {
    width: 95%;
  }
}
