html,
body,
#map {
    height: 100%;
}

.filter-group {
    font:
        12px/20px 'Helvetica Neue',
        Arial,
        Helvetica,
        sans-serif;
    font-weight: 600;
    position: absolute;
    top: 60px;
    right: 10px;
    z-index: 1;
    border-radius: 3px;
    /* width: 160px; */
    color: #fff;
    padding: 10px;
    background-color: black;
}

div#curve-div {
    background-color: red;
    padding: 5px 10px 0 10px;
}

.filter-group input[type='checkbox']:first-child+label {
    border-radius: 3px 3px 0 0;
}

.filter-group label:last-child {
    border-radius: 0 0 3px 3px;
    border: none;
}

.filter-group input[type='checkbox'] {
    display: none;
}

.filter-group input[type='range'] {
    padding: 10px;
    width: 100%;
    margin: 0;
}
datalist {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    writing-mode: vertical-lr;
    width: 100%;
    margin: 0;
}
option {
    padding: 0 0 10px;
}
  
.filter-group input[type='checkbox']+label {
    background-color: #969ca1;
    display: block;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.filter-group input[type='checkbox']+label {
    background-color: #969ca1;
    text-transform: capitalize;
}

.filter-group input[type='checkbox']+label:hover,
.filter-group input[type='checkbox']:checked+label {
    background-color: #4ea0da;
}

/* .filter-group input[type='checkbox']:checked+label:before {
    content: "";
    margin-right: 5px;
} */

dl {
    padding: 0.5em;
}

dt {
    float: left;
    clear: left;
    width: 100px;
    text-align: left;
    font-weight: bold;
    color: green;
}

dt::after {
    content: ":";
}

dd {
    margin: 0 0 0 110px;
    padding: 0 0 0.5em 0;
}

.maplibregl-popup-content {
    width: max-content;
}

button.layersButton {
    font-weight: 600;
    z-index: 1;
    border-radius: 3px;
    color: #fff;
    padding: 10px;
    height: 40px;
    width: 180px;
    background-color: #4ea0da;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.infoButton {
    background: none;
    border: 0;
    z-index: 1;
    padding: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;


}

.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.collapsible:hover {
    background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.collapsecontent {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }
  .tooltip .tooltiptext {
    top: 120%;
    left: 105%;
    margin-left: -120px; /* Use half of the width (120/2 = 60), to center the tooltip */
  }



  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
