html, body, #container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Helvetica', sans-serif;
}

body {
  padding-top: 50px;
}

#mapA, #mapB {
    height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#mapA.hidden, .circleB.hidden {
    display: none;
}

#mapB.expanded {
    width: 84%;
}

#legendBox {
    background-color: #f8f8f8;
    padding: 20px;
    height: 100vh;
}

#placename {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#desc {
    font-size: 16px;
    line-height: 1.6;
}

.leaflet-control-zoom-fullscreen { background-image: url(../img/icon-fullscreen.png); }
/* on selector per rule as explained here : http://www.sitepoint.com/html5-full-screen-api/ */
.leaflet-pseudo-fullscreen { position: fixed !important; width: 100% !important; height: 100% !important; top: 0px !important; left: 0px !important; z-index: 99999; }
.leaflet-control-layers {
  overflow: auto;
}
.leaflet-control-layers label {
  font-weight: normal;
  margin-bottom: 0px;
}
.leaflet-control-layers-list input[type="radio"], input[type="checkbox"] {
  margin: 2px;
}
#aboutTabsContent {
  padding-top: 10px;
}
::selection {
  background: #DBDBDB; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #DBDBDB; /* Gecko Browsers */
}

select:focus{
    border-color: gray;
    outline:none;
}

.white {
  color: #FFFFFF;
}
.table {
  margin-bottom: 0px;
}

.navbar-form .checkbox-inline {
    color: #AAAAAA; /* Change to your desired color, this is red for example */
}

/* Change the color on hover and focus to a different shade or keep it the same */
.navbar-form .checkbox-inline:hover,
.navbar-form .checkbox-inline:focus {
    color: #EEEEEE; /* Change to your desired hover color */
}

/* You may need to adjust the following styles based on your specific navbar styling */
.navbar-form .checkbox-inline input[type="checkbox"] {
    margin-top: -2px; /* Vertically align the checkbox with the text */
}

/* Ensure that the label and checkbox are not affected by line-height styles from the navbar */
.navbar-form .form-group {
    line-height: normal;
}

.navbar {
    background-color: #222222;
    border-color: #222222;
}
.navbar .navbar-brand {
  font-weight: bold;
  font-size: 25px;
  color: #FFFFFF;
}
.navbar .navbar-brand img {
  margin-top: -8px;
  margin-left : 0px;
}
.navbar-collapse.in {
  overflow-y: hidden;
}
.navbar-header .navbar-icon-container {
  margin-right: 15px;
}
.navbar-header .navbar-icon {
  line-height: 50px;
  height: 50px;
}
.navbar-header a.navbar-icon {
  margin-left: 25px;
}
.typeahead {
  background-color: #FFFFFF;
}
.tt-dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 4px;
  padding: 4px 0;
  width: 100%;
  max-height: 300px;
  overflow: auto;
}
.tt-suggestion {
  font-size: 14px;
  line-height: 20px;
  padding: 3px 10px;
}
.tt-suggestion.tt-cursor {
  background-color: #DBDBDB;
  color: #FFFFFF;
  cursor: pointer;
}
.tt-suggestion p {
  margin: 0;
}
.tt-suggestion + .tt-suggestion {
  border-top: 1px solid #ccc;
}
.typeahead-header {
  margin: 0 5px 5px 5px;
  padding: 3px 0;
  border-bottom: 2px solid #333;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

.loader {
  border: 16px solid #333333; /* Dark grey */
  border-top: 16px solid #555555; /* Light grey */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

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

@media (max-width: 992px) {
  .navbar .navbar-brand {
    font-size: 18px;
  }
}
@media (max-width: 767px){
  #sidebar {
    display: none;
  }
  .url-break {
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
      hyphens: auto;
  }
  .dropdown-menu a i{
    color: #000000;
  }
}
/* Print Handling */
@media print {
  .navbar {
    display: none !important;
  }
  .leaflet-control-container {
    display: none !important;
  }
}
