*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    font-family: "SUSE Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
}

svg {border : 1px solid #000000 }
        
.mahlukat path {
    fill: #12a906;
    /* stroke: #12a906; */  
    /*  stroke-width: 1.5px; */
}
.mahlukat path:hover{ fill: #117602; }
.food circle {fill: #b2bb04; }
.food circle:hover {fill: #8f9603}

.chart_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
    align-items: flex-start;
    border: 1px solid #000000;
}
.chart svg{
    width: 430px;
    height:auto;
    border: 1px solid #000000;
    background-color: #f0f0f0;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin:20px;
    align-items: center;
    text-align: center;
}
rect{
    pointer-events: all;
    fill-opacity: 0;
    stroke-opacity: 0;
    z-index: 1;
}
.tooltip{
    position: absolute;
    padding: 10px;
    background-color: steelblue;
    color: white;
    border: 1px solid #eeeeee;
    display: none;
    opacity: .75;
}
.slideContainer{
    width: 75%;
    margin-top: 25px;
    margin-left: 25px;
}
.slider{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  background: #f0f0f0;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  box-shadow: 0 1px 10px 1px black;
}

.slider:hover{ 
    opacity: 1; 
}

.sliderWrap{
  position: relative;
  width: 30%;            /* align with .slider width */
  margin-top: 25px;
}

.slider::-webkit-slider-thumb{ 
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 30px;
    background: white;
    cursor: pointer;
}
.slider::-moz-range-thumb {
    -moz-appearance: none;
    width: 10px;
    height: 30px;
    background: white;
    cursor: pointer;
}
.sliderDescription p{
    margin-top: 25px;
    opacity: 0.7;
}
.sliderWrap::before{
  content: "1";
  position: absolute;
  left: 0;
  top: 28px;            /* add units */
  font-size: 16px;
  color: black;
}
.sliderWrap::after{
  content: "500";
  position: absolute;
  right: 0;
  top: 28px;
  font-size: 16px;
  color: black;
}
.sliderWrap p{
    margin-bottom: 10px;
}
.normal_text{
    margin-left: 10px;
    margin-top: 10px;
}
button,
.linker_button{
    text-decoration: none;
    margin-left: 10px;
    border: none;
    outline: none;
    height: 30px;
    overflow: hidden;
    background: #337733;

}
button:hover,
.linker_button:hover{
    background: #226622;
}
.button__text,
.button__icon {
    display: inline-flex;
    align-items: center;
    padding: 0 7px;
    color: white;
    height: 100%;
}
.button__icon{
    font-size: 1.2em;
    background-color: rgba(0, 0, 0, 0.07);
}
h1{
    text-align: center;
    margin-top: 10px;
}
.input_row{
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.input_field{
    font-size: 13px;
    margin-left: 10px;
    margin-right: 10px;
    width: 160px;
}
.input_field input[type="number"] {
  width: 100%;
  min-width: 0;            
}

.above_chart_text{
    text-align: center;
    align-items: center;
    margin-top: 20px;
}
.linker_button{
    margin-top: 15px;
    display: inline-flex;
    padding: 0;
    font-weight: 650;

}
.version_tracker{
    position: fixed;
    bottom: 15px;
    right: 15px;
    opacity: 0.6;
}