body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2rem;
}

.container {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
}

pre {
  font-size: 1rem;
  white-space: pre-wrap;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 0;
  flex: 1 1 50%;
  min-width: 200px;
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

#map {
  flex: 1 1 50%;
  min-height: 300px;
  height: 400px;
  border-radius: 8px;
  box-sizing: border-box;
  min-width: 200px;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  #map {
    height: 300px;
    width: 100%;
  }

  pre {
    width: 100%;
  }
}
