body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #0a2a43;
}

header {
  background: #0a2a43;
  color: white;
  padding: 15px;
  text-align: center;
}

h1, h2 {
  margin: 10px 0;
}

/* верхний блок: форма + карта */
.top {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: stretch;
}

.form {
  flex: 1;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#map {
  flex: 2;
  min-height: 400px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* кнопки */
button {
  background: #00a6a6;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #008080;
}

/* нижний блок: таблица */
.bottom {
  margin-top: 20px;
  padding: 20px;
}

.table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 8px;
  text-align: center;
}

tr:nth-child(even) {
  background: #f9f9f9;
}
.public-wrapper {
  max-width: 1200px;   /* ширина блока как у основного контента */
  margin: 0 auto;
  padding: 20px 0;
}

.public-wrapper #map {
  height: 700px;       /* увеличенная высота */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
