/* Search input styling */
.search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0 0.5rem 0.25rem 0;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
  border-bottom-color: white;
}
