#filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
button {
  padding: 10px 20px;
}
select {
  padding: 10px 20px;
}
#stationList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

li {
  width: 200px;
  height: 200px;
  background: #ffffff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.212);
  border-radius: 10px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
li img {
  width: 150px;
  border-radius: 10px;
  height: 100px;
}
li button {
  margin: 10px;
  border: none;
  cursor: pointer;
  outline: none;
}

#bs{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    left: 0;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 30px;
    padding: 10px;
}
body{
    margin: 10px;
}
#stationList {
  height: 500px;
  overflow-y: auto;
}
