/* Center the map div */
body {
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the body takes the full height of the viewport */
    margin: 0; /* Remove default margin */
  }
  
  #map {
    height: 70vh;
    width: 80%; /* Optional: Adjust width for better responsiveness */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  #resultTable{
    font-size: 20px;
  }