/* Map Component Styles */
.map-container {
  width: 100%;
  overflow: hidden;
}

.map-container .map-element {
  width: 100%;
  height: 100%;
}

/* Height variations */
.map-container.height-300 { height: 300px; }
.map-container.height-400 { height: 400px; }
.map-container.height-500 { height: 500px; }
.map-container.height-600 { height: 600px; }
.map-container.height-70vh { height: 70vh; }
.map-container.height-80vh { height: 80vh; }
.map-container.height-90vh { height: 90vh; }
.map-container.height-100vh { height: 100vh; }

/* Border radius variations */
.map-container.rounded,
.map-container.rounded .map-element {
  border-radius: 0.5rem;
}

/* Additional styling for the map component */
.map-container.shadow {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
} 