  form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      width: 100%;
      max-width: 1200px;
      background-image: url("data:image/svg+xml,%3csvg width='20' height='40' viewBox='0 0 20 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 0L0 10L10 20L20 10L10 0Z' stroke='%23D1D5DB' stroke-opacity='0.3'/%3e%3cpath d='M10 20L0 30L10 40L20 30L10 20Z' stroke='%23D1D5DB' stroke-opacity='0.3'/%3e%3c/svg%3e");
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      color: #374151;
      font-size: 1rem;
      font-weight: 400;
    }

    input[type="text"] {
      width: 100%;
      padding: 0.5rem 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.25rem;
      font-size: 1rem;
      color: #6b7280;
      outline-offset: 2px;
      outline-color: transparent;
      transition: outline-color 0.2s ease;
      box-sizing: border-box;
    }

    input[type="text"]::placeholder {
      color: #9ca3af;
    }

    input[type="text"]:focus {
      outline-color: #444A9E;
      border-color: #444A9E;
      color: #111827;
    }

    button {
      grid-column: 1 / -1;
      justify-self: center;
      margin-top: 0.5rem;
      padding: 0.5rem 1.25rem;
      border: 1px solid #444A9E;
      background: transparent;
      color: #444A9E;
      font-size: 1rem;
      border-radius: 0.25rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    button:hover,
    button:focus {
      background-color: #444A9E;
      outline: none;
      color: white;
      box-shadow: 0 0 0 2px #444A9E;
    }

    @media (max-width: 640px) {
      form {
        grid-template-columns: 1fr;
      }

      button {
        grid-column: 1;
      }
    }

    .button-class {
      grid-column: 1 / -1;
      justify-self: center;
      margin-top: 0.5rem;
      padding: 0.5rem 1.25rem;
      border: 1px solid #444A9E;
      background: transparent;
      color: #444A9E;
      font-size: 1rem;
      border-radius: 0.25rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    /* Styling for the autocomplete list */
    /* Ensure the parent has relative positioning */
    form>div {
      position: relative;
    }

    /* Position suggestions just below the input */
    .autocomplete-list {
      position: absolute;
      top: 100%;
      /* ⬇ Position below the input */
      left: 0;
      right: 0;
      background-color: #ffffff;
      border: 1px solid #ccc;
      max-height: 200px;
      overflow-y: auto;
      z-index: 9999;
      /* Make sure it’s on top */
      margin-top: 4px;
      border-radius: 0.25rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .autocomplete-list .list-group-item {
      padding: 8px;
      cursor: pointer;
      color: #333;
    }

    .autocomplete-list .list-group-item:hover {
      background-color: #f0f0f0;
    }