h1 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#search {
  position: relative;
  width: 100%;
  max-width: 300px;
}

#searchbox {
  width: 100%;
  padding: 0.4rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  background-color: #1e1e1e;
  color: #f0f0f0;
}

#searchbox::placeholder {
  color: #aaa;
}

#searchdropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #333;
  background: #1e1e1e;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  color: #f0f0f0;
  border-bottom: 1px solid #2c2c2c;
}

.dropdown-item:hover {
  background-color: #2a2a2a;
}

.dropdown-item img {
  width: 50px;
  height: 75px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.scroll-wrapper {
  max-height: 200px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-x;
  transform: translateX(0); /* Forces hardware acceleration */
}

#user-header {
  display: flex;
  margin-left: auto;
}