/* TIME SLIDER */
#time-slider-container{
    align-items: center;
    justify-content: center;
    display: grid;  
}


.slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

#time-slider-tooltip {
    position: absolute;
    top: -30px; /* Abstand über dem Slider */
    padding: 3px 6px;
    background: #1e293b;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    transform: translateX(-50%);
    pointer-events: none;
    transition: left 0.05s linear;
    white-space: nowrap;
    opacity: 0;
}

#time-slider-date-input{
  width: -webkit-fill-available;
}

#time-slider-text-input{
  width: 50px;
  text-align: center;
  margin: auto;
}

/* BANNER */
#slider-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 60px;
    width: 100%;
    background: rgba(255, 0, 0, 1);
    opacity: 1;
    transition: opacity 3s ease-in;
    z-index: 9999999;
}
#slider-banner.hidden{
    display: "none";
}
.slider-banner-text{
    font-size: 36px;
    font-weight: bold;
}