/* Style for the form */
form {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Style for the label container */
label {
  display: flex;
  align-items: center;
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 50px;
  /* Rounded corners */
  padding: 12px 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

label:focus-within {
  border-color: #4285f4;
  /* Google blue color */
  box-shadow: 0 2px 15px rgba(66, 133, 244, 0.2);
}

/* Style for the SVG icon */
svg {
  margin-right: 12px;
  color: #666;
  flex-shrink: 0;
}

/* Style for the input */
input[type="text"] {
  border: none;
  outline: none;
  font-size: 1.1rem;
  width: 100%;
  background: transparent;
  color: #333;
  font-family: Arial, sans-serif;
}

input[type="text"]::placeholder {
  color: #999;
}

.suggestion-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.suggestion-item {
  border: 1px;
  border-color: black;
}