.searchBG {
  font-size: 14px;
  padding: 5px 8px;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#updateList {
  display: block;
  margin: 0;
  padding: 0;
}
#updateList li {
  font-size: 14px;
  white-space: nowrap;
}

.key-person-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 50%;
}


.update-scroll-wrapper {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.update-scroll {
  display: block;
  animation: scroll-up 10s linear infinite;
}

.update-scroll li {
  padding: 5px 0;
  white-space: nowrap;
}

@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

