html {
  font-size: 14px;
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
  height: 100%;
}

iframe{
  width: 100%;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.header {
  grid-column: span 12;
  height: 44px;
  background-color: red;
  vertical-align: middle;
}

#datepicker {
  width: 200px;
}

.gm-style-iw-d {
  margin-top: -20px;
}

.app-container {
  height: calc(100% - 49px);
}

div#sidebarMenu {
  overflow: scroll;
  height: inherit;
}

@media (max-width: 768px) {
  div#sidebarMenu {
    height: auto;
  }
  
}

/* Plot loading spinner styles */
.plot-spinner-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.plot-spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
}

.plot-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.plot-spinner.hidden {
  display: none;
}