/* Suggestions container responsive styling */
.suggestions-container {
  width: 100% !important; /* Full width on mobile */
  left: 0 !important;
  right: 0 !important;
}

@media (min-width: 640px) {
  .suggestions-container {
    width: calc(100% - 4rem) !important; /* Inset on larger screens */
    left: 2rem !important; /* Align with the straight part of the input */
    right: 2rem !important;
    border-radius: 0.5rem !important; /* Less rounded than the input */
  }
}
