/* Vollflächige Karte */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  #map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Erfolge-Overlay */
  #achievements {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 5;
  }
  
  /* PlaceFinder-Overlay */
  #place-list {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-height: 30%;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 5;
  }
  #place-list h3 {
    margin-top: 0;
  }
  #place-list ul {
    padding-left: 20px;
    margin: 4px 0;
  }
  