html {
  font-size: 14px;
  font-family: sans-serif;
  --primary-color: #3498db;
  --secondary-color: #2980b9;
  --background-color: #ecf0f1;
  background: linear-gradient(0, #FFF, #f2d7cd, #eebba9, #E4521D) no-repeat top;
  background-size: 100% 100%;
  background-attachment: fixed;
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: #07F;
}
header {
  color: #FFF;
  text-align: center;
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header h1 {
  font-size: 42px;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 32px;
  }
}
footer {
  position: fixed;
  bottom: 0;
}
.table-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.table-container .filters {
  margin: 20px 0;
  display: flex;
  gap: 10px;
}
.table-container .filters .search-input,
.table-container .filters .filter-select {
  padding: 8px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}
.table-container .groups-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.table-container .groups-table th,
.table-container .groups-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.table-container .groups-table th {
  cursor: pointer;
}
.table-container .groups-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.table-container .groups-table tr:hover {
  background-color: #f5f5f5;
}
.submit-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.submit-container .submit-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.submit-container .submit-content h1 {
  padding-bottom: 6px;
}
.submit-container .submit-content ol,
.submit-container .submit-content ul {
  margin: 15px 0;
  padding-left: 20px;
}
.submit-container .submit-content .code-example {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 15px 0;
}
.navigation-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.navigation-links a {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.navigation-links a:hover {
  background-color: var(--secondary-color);
}
#map {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.qr-code {
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 6px;
}
.qr-code img {
  display: block;
  width: 160px;
  padding-bottom: 6px;
}
.qr-code .cp {
  font-size: 12px;
  opacity: 0.5;
}
.marker-region-box {
  background: #FFF;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 14px;
  line-height: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.marker-region-box h4 {
  font-size: 14px;
  line-height: 20px;
}
.marker-region-box::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: #FFF transparent transparent transparent;
}
.marker-region-box .marker-content .group-list {
  font-size: 12px;
}
.value {
  cursor: pointer;
}
.navigation-btn {
  background: #E4521D;
  color: #FFF;
  padding: 4px 6px;
  border-radius: 2px;
  pointer-events: auto;
}
footer {
  padding: 4px 6px;
  pointer-events: none;
  text-align: right;
  position: fixed;
  right: 0;
}
footer .navigation {
  display: flex;
  padding-bottom: 4px;
  justify-content: flex-end;
}
footer .cp {
  font-size: 12px;
  opacity: 0.5;
}
