body {
  margin: 0;
  background: #05070a;
  color: #eaeaea;
  font-family: Arial, sans-serif;
}

.header {
  background: #0f141c;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  color: #ff2e2e;
  font-size: 26px;
  font-weight: bold;
}

.time {
  text-align: right;
  color: white;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.card {
  background: #111826;
  border: 1px solid #1f2a3a;
  border-radius: 10px;
  padding: 12px;
}

.card h2 {
  margin-top: 0;
  color: #ff2e2e;
}

.wide {
  grid-column: span 2;
}

#map {
  height: 300px;
  border-radius: 8px;
}