* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  width: 100%;
  background: #1a73e8;
  color: white;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#status {
  margin: 16px auto 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: calc(100% - 48px);
  text-align: center;
  color: #444;
  font-size: 0.95rem;
}

#status.active {
  background: #e6f4ea;
  color: #2e7d32;
}

#status.error {
  background: #fdecea;
  color: #c0392b;
}

#coords {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
  text-align: center;
}

#map {
  width: calc(100% - 48px);
  max-width: 800px;
  height: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 24px;
}
