/**
 * Map Container Styles - Westwood Branding
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: 'Roboto', Calibri, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

/* Map View Container */
#viewDiv {
  position: absolute;
  top: 0;
  left: 0;
  right: 400px; /* Space for side panel */
  bottom: 0;
  z-index: 0;
}

/* Loading Indicator */
.loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #D7D2C4;
  border-top: 4px solid #F47920;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-indicator p {
  font-family: 'Roboto', Calibri, sans-serif;
  color: #2490cc;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #viewDiv {
    right: 0;
    bottom: 50%;
  }
}
