body {
  background: #111;
  color: #fff;
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  min-height: 340px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 799px) {
  .container {
    flex-direction: column;
  }
  #map {
    width: 100% !important;
    min-width: 0;
    min-height: 180px;
    height: 220px;
    max-width: 100vw;
  }
}
.info-side {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#map {
  border-radius: 12px;
  flex: 1 1 0;
}

@media (min-width: 800px) {
  .map-side {
    width: 300px;
    display: flex;
  }
}
#map {
  border-radius: 12px;
  flex: 1 1 0;
}
.info {
  text-align: left;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
  font-size: 1.08rem;
}
.info-row:last-child {
  border-bottom: none;
}
.label {
  color: #aaa;
  font-weight: 500;
}
.value {
  color: #fff;
  font-weight: 600;
}
.loading {
  color: #00ffe7;
  font-size: 1.1rem;
  margin-top: 2rem;
  letter-spacing: 1px;
  animation: blink 1.2s linear infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
.error {
  color: #ff4e4e;
  margin-top: 2rem;
  font-weight: 600;
}
.info-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}
.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
