* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 
  }
  
  .search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  input[type="text"],
  select {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
  }
  
  button {
    padding: 10px 15px;
    margin: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  #map {
    width: 90%;
    height: 800px; 
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #results {
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    width: 80%;
    max-width: 600px;
  }
  

  @media (max-width: 600px) {
    .search-container {
      flex-direction: column;
      align-items: center;
    }
  
    input[type="text"],
    select,
    button {
      width: 90%;
    }
  }
  