* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #edf2f7;
  color: #111;
}

.topbar {
  background: linear-gradient(135deg, #1d73c9, #0f4f93);
  color: #fff;
  padding: 18px 20px;
}

.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.brand {
  font-size: 30px;
  font-weight: 700;
}

.subtitle {
  font-size: 15px;
  opacity: 0.95;
  margin-top: 4px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

h1 {
  text-align: center;
  font-size: 46px;
  margin: 10px 0 24px;
  letter-spacing: 1px;
}

.panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 20px;
}

.toolbar-block {
  margin-bottom: 18px;
}

.toolbar-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button,
.actions a {
  border: 0;
  border-radius: 8px;
  background: #2d7fd3;
  color: #fff;
  padding: 11px 15px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease;
}

button:hover,
.actions a:hover {
  background: #165ea7;
}

button.active {
  background: #0d4f91;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #f6f8fb;
  border-radius: 10px;
}

#mapTitle {
  font-size: 22px;
  font-weight: 700;
}

#mapInfo {
  font-size: 16px;
  color: #334;
}

.map-wrap {
  position: relative;
  background: #f8fafc;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  min-height: 420px;
}

.map-wrap img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 6px;
  display: none;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  color: #667;
  font-size: 20px;
  padding: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 768px) {
  h1 { font-size: 30px; }
  .brand { font-size: 24px; }
  button, .actions a {
    font-size: 14px;
    padding: 10px 12px;
  }
  #mapTitle { font-size: 18px; }
  #mapInfo { font-size: 14px; }
  .placeholder { font-size: 16px; min-height: 240px; }
  .map-wrap { min-height: 280px; }
}
