﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* Map container responsive styling */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.map-image {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* For smaller screens */
@media (max-width: 576px) {
    .map-image {
        max-height: 200px;
    }
}