#open-popup {
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 0 0;
  animation: slide-up 0.3s ease-out;
}

.popup-content {
  padding: 20px;
}
.popup-content .title {
  font-size: 16px;
  font-weight: 700;
}

.popup-content .list {
  margin-top: 10px;
}
.popup-content .list .item {
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

#close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

@keyframes slide-up {
  from {
      transform: translateY(100%);
  }
  to {
      transform: translateY(0);
  }
}