* {
  margin: 0;
  padding: 0;

}

body {
  background-color: #f1f2f3;
}

.container {
  box-sizing: border-box;
  max-width: 1560px;
  min-width: 1240px;
  margin: 20px auto;
  color: #333;
}

.container *{
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

header p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.card-title span {
  margin-right: 10px;
  font-size: 24px;
}

.map-selector {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.map-option {
  flex: 1;
  min-width: 280px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.map-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: white;
}

.map-option.active {
  border-color: #2575fc;
  background: #e8f4ff;
}

.map-option h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.map-option p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.map-container {
  position: relative;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

#map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(to right, #2575fc, #6a11cb);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 15px;
}

.info-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item ul {
  padding-left: 20px;
}

.info-item li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.coordinate-info {
  background: #e8f4ff;
  border-left: 4px solid #2575fc;
}

.notes {
  background: #fff8e6;
  border-left: 4px solid #ffc107;
}

.footer {
  text-align: center;
  padding: 25px 0;
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .container {
    padding: 0 20px;
  }
}
