/* Limit main image width */
.image-wrapper {
    max-width: 700px;
}

/* Legend styles */
.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.legend-dot-fire {
    background: yellow;
}

.legend-line {
    width: 30px;
    height: 4px;
    display: inline-block;
    margin-right: 8px;
}

.legend-line-smoke {
    background: gray;
}

#sat-image {
  height: 80vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  #sat-image {
    height: auto;
    width: 100%;
  }
  .image-wrapper {
    padding-top: 1rem;
  }
}

/* hidden by default; shown while loading in JS */
#spinner {
  display: none;
}

