.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 255, 0);
}

.modal-content {
  position: relative;
  margin: 270px auto;
  background-color: #BBDFEC;
  width: 350px;
  height: 450px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border: 3px solid #000;
}

.search-container {
  margin-bottom: 20px;
}

.search-container input {
  width: 70%;
  padding: 10px;
  margin-right: 10px;
}

.search-container button {
  padding: 10px;
  cursor: pointer;
}

.modal-result {
  max-height: 270px;
  overflow-y: auto;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}
