/* --- GLOBAL SEARCH INPUT --- */

#searchInput {
  padding: 1.5vh 2vw;
  font-size: 1rem;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex-grow: 1;
}

#searchInput::placeholder { color: #ffffff !important; }

#searchInput:focus {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: var(--primary-color);
  outline: none;
}

@media (min-width: 769px) {
    #searchInput {
        flex-grow: 0; 
        width: 70%; 
        text-align: center;
    }
    #searchInput::placeholder { text-align: center; }
}

/* Light theme search overrides */
[data-theme^="light"] #searchInput {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: rgba(0,0,0,0.12) !important;
}
[data-theme^="light"] #searchInput::placeholder { color: #666666 !important; }