body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(135deg, #faf9f6, #f4f1ea);
    color: #333;
  }
  
  header {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f5f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #6d4c41;
  }
  
  #map {
    height: calc(100vh - 120px);
    width: 100%;
    border-radius: 16px;
  }
  
  .popup {
    text-align: center;
  }
  
  .popup img {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
  }
  