form {
      font-family: 'Inter', sans-serif;
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      max-width: 700px;
      margin: auto;
      position: relative;
    }

    .form-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: flex-end;
    }

    .form-group {
      flex: 1 1 200px;
      min-width: 0;
    }

    .form-submit {
      flex: 0 0 auto;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    select, input[type="text"] {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1.5rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      box-sizing: border-box;
        appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    }

    input[type="submit"] {
      background: #2e86de;
      color: white;
      padding: 0.8rem;
      margin-bottom: 1.5rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
      box-sizing: border-box;
      height: auto;
      align-self: flex-start;
      margin-top: 1.9rem;
    }

    input[type="submit"]:hover {
      background: #1b4f9c;
    }

    .city-container {
      position: relative;
    }

    .suggestion-box {
      position: absolute;
      top: calc(100% - 1.4rem); /* Closer to input field */
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: white;
      border: 1px solid #ccc;
      display: none;
      border-top: none;
      border-radius: 8px;        /* Rounded corners */
      overflow: hidden;          /* Ensures children follow border-radius */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Optional: soft shadow */
    }

    #city {
      position: relative;
    }

    #suggestions {
      width: 100%;
    }

    .suggestion-item {
      padding: 0.6rem 1rem;
      cursor: pointer;
      border-bottom: 1px dotted #ccc;
      background-color: white;
      transition: background-color 0.2s ease;
    }

    .suggestion-item:last-child {
      border-bottom: none;
    }

    .suggestion-item:hover {
      background-color: #f0f8ff;
    }

    @media (max-width: 600px) {
      .form-submit {
        flex: 1 1 100%;
      }

      input[type="submit"] {
        width: 100%;
      }
    }
    
.form-footer {
  max-width: 700px;
  margin: 1rem auto;
  height: 60px;
  background: #f9f9f9;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  gap: 0.5rem;
}

.form-footer .description {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  flex: 1 1 auto;
}
.form-footer .highlight-link {
  color: #2e86de;
  font-weight: 600 !important;
  text-decoration: none;
}

.form-footer .highlight-link:hover {
  text-decoration: underline;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    select {
      height: 44px !important;
      padding: 0.6rem !important;
      font-size: 1rem !important;
      box-sizing: border-box !important;
    }
  }
  body.safari select {
  height: 100px;
}
