/* === Search Bar Styling === */
.search-bar {
  width: 50%;
  margin: 0 auto;                /* center the search bar */
  margin-bottom: 1.5rem;         /* same gap as between cards */
}

.search-bar input {
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Highlight effect when typing */
.search-bar input:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* === Responsive Adjustment for all vertical (portrait) screens === */
@media (orientation: portrait) {
  .search-bar {
    width: 90%;
  }
}