/* Search Box Styling */
.searchBox {
  display: flex;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.searchBox:focus-within {
  border-color: #1f60c2;
  box-shadow: 0 4px 12px rgba(31, 96, 194, 0.15);
}

.searchInput {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: #333;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
}

.searchInput::placeholder {
  color: #6c757d;
  font-size: 0.95rem;
}

.searchInput:focus {
  box-shadow: 0 0 0 3px rgba(31, 96, 194, 0.1);
}

.searchButton {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #1f60c2, #4cbebd);
  border: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.searchButton:hover {
  background: linear-gradient(135deg, #1a54b3, #43a8a7);
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 4px 8px rgba(31, 96, 194, 0.25);
}

.searchButton:active {
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(31, 96, 194, 0.2);
}

.searchButton svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Search Box Responsive */
@media (max-width: 576px) {
  .searchBox {
    max-width: 100%;
  }
  
  .searchInput {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }
  
  .searchButton {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .searchButton svg {
    width: 1rem;
    height: 1rem;
  }
}
