/* Search form styling */
.search-wrapper {
  position: fixed;
  bottom: 5rem; /* Position above bottom nav */
  left: 0;
  right: 0;
  z-index: 999; /* Below bottom nav */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.search-container {
    padding: 0.75rem;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.9375rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem; /* Prevents iOS zoom on focus */
    background-color: #f5f5f5;
}

.search-input:focus {
    outline: none;
    border-color: #0066ff;
    background-color: #fff;
}

/* Search results styling */
.search-results {
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid lightgrey;
  border-radius: .5rem;
  padding: 0.5rem 1rem;
  margin: 0.5rem auto;
}

.search-result-item h6 {
  margin: 0 !important;
}

#empty-search-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;

  font-size: 1.2rem;
  color: #999;
}