html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
    height: 100%;
    background-color: #0b1220;
}

.container-fluid {
    height: calc(100% - 65px); /* Subtract navbar height */
    padding-left: 0px;
    padding-right: 0px;
}
main {
  height: 100%;
}

#app {
  height: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

.navbar {
    background-color: #0b1220 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.logo-container {
    padding-left: 0px;
}

/* Filters & Layers (zoning tree) panel */
.zoning-tree-container {
    /* Prevent the navbar from growing indefinitely */
    max-height: 70vh;
    overflow: hidden;
}

.zoning-tree-body {
    /* Make body content scroll vertically when it gets tall */
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}