/* Basic reset */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #3D9999; /* Slightly gray background */
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  color: #E7E2D9;
}
main { flex: 1 0 auto; }
footer {
  flex-shrink: 0;
}
.logo {
  margin: 10px;
  max-height: 150px;
  max-width: 100%;
}
.studio-logo{
  /* margin: 10px; */
  max-height: 150px;
  max-width: 75%;
}
/* Body defaults */
body a p{
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #E7E2D9;
}

footer a{
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: white;
}

.navbar-brand{
  margin-right: 0em;
}

.google-nav-link{
  text-decoration: none;
  color: #3D9999;
}
.card-logo{
  background-color: #3D9999;
}
/* Heading styling */
h1, h2, h3 {
  font-weight: 600;
  color: #E7E2D9
}

.card-body{
  background-color: #E7E2D9;
}

/* Map placeholder styling */
#map {
  background-color: #ddd;
  width: 100%;
  height: 200px; /* On mobile, 200px tall */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  /* font-size: 1.2rem; */
  border-radius: 4px;
}

hr{
  margin-bottom: 0px;
}

/* .maplibregl-popup-content{
  padding-top: 10px !important; 
  padding: 5px !important;
} */
 
/* Larger screens: make the placeholder taller */
@media (min-width: 768px) {
  .map-placeholder {
    height: 400px;
  }
}

.progress-bar{
  color: #2E4756;
  background-color: #3D9999;
  /* margin: 10px; */
  border: 2px solid #E7E2D9;
}

.progress{
  height: 2rem;
  background-color: #E7E2D9;
}

.btn-primary{
  background-color: #3D9999;
  border: 1px solid #E7E2D9;
}

.btn-primary:hover{
  background-color: #353A3F;
  border: 1px solid #E7E2D9;
}

.btn-primary:focus{
  background-color: #353A3F;
  border: 1px solid #E7E2D9;
}

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.text-donation{
  color: #E7E2D9;
}

.nav-link{
  color:#3D9999;
}

/* .list-group-item{
  background-color: #E7E2D9;
} */


.maplibregl-ctrl-attrib.maplibregl-compact-show{
  /* display: none; */
}

.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button, .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner{
  /* display:none; */
}

.maplibregl-ctrl-attrib-inner{
  font-size: 0.5rem;
}

.button-studio-list{
  /* background-color: #E7E2D9; */
  border: 0px;
  color: #E7E2D9;
}

.donation-url{
  color: #3D9999;
}

.donation-url:link{
  text-decoration: underline;
}


/* Basic styling for the banner */
.cookie-notice {
  position: fixed;
  bottom: 100px;
  left: 0;
  width: 100%;
  background: #3D9999; 
  color: #E7E2D9;
  /* text-align: center; */
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  z-index: 9999;
  display: none; /* hidden by default */
  border: 1px solid #2E4756;
}
.cookie-notice a {
color: #fff;
  text-decoration: underline;
}
/* .cookie-notice button {
  background: #555;
  color: #fff;
  border: none;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
} */
.cookie-notice button:hover {
  background: #777;
}


input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 15rem;
}

/***** Track Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
  background: #3D9999;
  height: 0.5rem;
  border: 2px solid #E7E2D9
}

/******** Firefox ********/
input[type="range"]::-moz-range-track {
  background: #3D9999;
  height: 0.5rem;
  border: 2px solid #E7E2D9
}

/***** Thumb Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -18px; /* Centers thumb on the track */
  background-color: #E7E2D9;
  height: 2.5rem;
  width: 1.5rem;
}

/***** Thumb Styles *****/
/***** Firefox *****/
input[type="range"]::-moz-range-thumb {
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0; /*Removes default border-radius that FF applies*/
  background-color: #E7E2D9;
  height: 2.5rem;
  width: 1.5rem;
}

#amountInput{
  background-color: #3D9999;
  color: #E7E2D9;
  font-size: 2em;
}

.gen-icon{
  filter: brightness(0) saturate(100%) invert(98%) sepia(7%) saturate(395%) hue-rotate(329deg) brightness(92%) contrast(96%);
}

.c-nav-item:active{
  color:#353A3F
}

.c-nav-item:focus{
  color:#353A3F
}

.modal-title{
  color: #343a40;
}

.modal-content label{
  color: #343a40;
}