/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    margin: auto;
  }
  
  /* Heading */
  h1 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 2rem;
  }
  
  /* Map Styles */
  #map {
    height: 60vh;
    width: 100%;
    max-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    margin-bottom: 1rem;
  }
  
  /* Info Container */
  #info {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  
  /* Text Styles */
  #info p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  
  /* Reset Button */
  #reset-button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px 0 rgba(255, 82, 82, 0.75);
    transition: all 0.3s ease;
  }
  
  #reset-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.75);
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    h1 {
      font-size: 1.5rem;
    }
    #info p {
      font-size: 0.9rem;
    }
    #reset-button {
      font-size: 0.9rem;
      padding: 0.65rem 1.3rem;
    }
  }
  