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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #fce4ec 0%, #e8eaf6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
}

h1 {
  font-size: 2rem;
  color: #5d4037;
  margin-bottom: 4px;
}

.version {
  font-size: 0.85rem;
  color: #bcaaa4;
  margin-bottom: 28px;
}

#btn-location {
  background: #a5d6a7;
  color: #2e7d32;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

#btn-location:hover {
  background: #81c784;
  transform: translateY(-1px);
}

#btn-location:active {
  transform: translateY(0);
}

#btn-location:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hidden {
  display: none;
}

#result {
  margin-top: 24px;
}

.info-card {
  background: #f5f5f6;
  border-radius: 12px;
  padding: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}

.info-row:last-of-type {
  border-bottom: none;
}

.label {
  color: #8d6e63;
  font-weight: 500;
}

.value {
  color: #4e342e;
  font-family: 'Consolas', monospace;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #c5cae9;
  color: #283593;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.map-link:hover {
  background: #9fa8da;
}

.error-box {
  margin-top: 16px;
  padding: 12px 16px;
  background: #ffebee;
  color: #c62828;
  border-radius: 10px;
  font-size: 0.9rem;
}
