/* src/styles/pages/demo.css */
/* === ДЕМО-СТРАНИЦА === */
.demo-page {
  background: #f9fbfd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === КОНТЕНТ === */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex: 1;
}

/* === КАРТА === */
.map-container {
  position: relative;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#map {
  height: 600px;
  width: 100%;
  border: none;
}

/* === ИНФОРМАЦИЯ НА КАРТЕ === */
.map-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 300px;
}

.map-info.collapsed .map-info-content {
  display: none;
}

.map-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 0px;
  margin-bottom: 0px;
  gap: 10px;
}

.map-info-title {
  font-weight: bold;
  color: #2c3e50;
}

.map-info-toggle {
  background: #f0f0f0;
  border: 1px solid #ccc;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-info-toggle:hover {
  background: #e0e0e0;
}

.map-info-step {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #34495e;
  line-height: 1.4;
}

/* === КОНТРОЛЫ === */
.controls {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.controls h2 {
  color: #2c3e50;
  margin-bottom: 16px;
  font-size: 1.5em;
}

/* === ДЕТАЛИЗАЦИЯ === */
.detail-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-top: 8px;
}

/* === ФОРМАТ === */
.format-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-top: 8px;
}

/* === ДЕМО-ЗАМЕТКА === */
.demo-note {
  margin-top: 16px;
  padding: 12px;
  background: #e8f4fd;
  border-left: 4px solid #3498db;
  font-size: 0.95em;
  color: #2c3e50;
  border-radius: 4px;
}

.demo-note code {
  background: #d6eaf8;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #27ae60;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 10px;
  box-sizing: border-box;
  width: 100%;
}
