/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

h1 {
  text-align: center;
  padding: 1rem;
  margin: 0;
  background: #0077cc;
  color: #fff;
  font-weight: normal;
  font-size: 1.8rem;
}

#content-container{
	width: 98%;
	margin: auto;
}

#map {
  height: 600px;
  width: 100%;
  border: 2px solid #0077cc;
  margin: auto;
  margin-top: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    padding: 0.75rem;
  }

  #map {
    height: 400px;
  }
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#dropPinBtn {
  background-color: #0dbf98;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#dropPinBtn:hover {
  background-color: #0aa885;
  transform: translateY(-2px);
}

#dropPinBtn:active {
  background-color: #088f72;
  transform: translateY(0);
}

.legend {
  max-width: 400px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 14px;
  color: #444;
}

.gradient-bar {
  height: 20px;
  width: 100%;
  background: linear-gradient(to right, rgba(10,10,200,0.7), rgba(200,10,30,0.7));
  border-radius: 4px;
  margin-bottom: 5px;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
}

.legend-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.site-footer {
  text-align: center;
  padding: 20px 15px;
  background-color: #f7f7f7;
  color: #555;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  line-height: 1.6;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: #888;
  font-size: 13px;
}
