/* Tour list container styles */

#tourlist-container {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #f1f1f1;
  border-top: 2px solid #ccc;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#tourlist {
  position:relative;
  top:-40px;
  min-height:140px;
  background-color: #ffffff;
  padding: 2px 25px 2px 25px;
  text-align: center;
  color: black;
  cursor: grab;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ */
}

#tourlist ul {
  display:grid;
  list-style-type: none;
  padding-inline: 0;
  border-bottom:1px #CCC solid;
  grid-template-columns:1fr 1fr 2fr;
  justify-items: start;
}

#tourlist li {
  padding-left:10px;
  text-align:start;
}

#top-bar {
  position:relative;
  top:-40px;
  height: 40px;
  background-color: #0f4ea6;
  color: white;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  cursor: grab;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ */
}
        
@keyframes elasticBounce {
  0% {
    bottom: 0px; 
  }
  20% {
    bottom: 140px;
  }
  48% {
    bottom: 140px;
  }
  60% {
    bottom: 0px;
  }
  72% {
    bottom: 60px;
  }
  84% {
    bottom: 0px;
  }
  92% {
    bottom: 20px; 
  }
  100% {
    bottom: 0px;
  }
}

#tourlist-container.bounce {
  animation: elasticBounce 1s ease-out;
}
