/* Horizontal Scroll Bar Design */

/* =================== SCROLL BAR + SEARCH =================== */
.scroll-bar {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #f5f5f5;
  padding: 10px 5px;
  border-top: 1px solid #212529;
  border-bottom: 1px solid #212529;
}

.scroll-container {
  display: inline-flex;
  gap: 20px;
  padding-left: 20px;
}

/* Search Input */
#updateSearch {
  width: 10%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid #212529;
  border-radius: 6px;
  font-size: 14px;
  height: 25px;
}

.scroll-container span {
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: #212529;
  border: 1px solid #212529;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.scroll-container span:hover {
  background-color: #94ebc4;
  transform: scale(1.05);
}