
#dateSelectionContainer {
  margin-top: 15px;
  padding: 18px;
  display: block;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

#headerContainer{
  text-align: center;
  margin-bottom: 0px;
}

#dateLabel{
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

#selectedDateDisplay{
  font-weight: 700;
  color: #4a89dc;
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-bottom: 40px;
}

#sliderContainer{
  margin: 25px 5px 15px 5px;
}



  
  #dateSlider {
    height: 5px;
    margin: 20px 0;
  }
  
  #dateSlider .noUi-connect {
    background: #4a89dc;
    background: linear-gradient(90deg, #4a89dc 0%, #5d9cfa 100%);
    transition: background 0.3s ease;
  }
  
  #dateSlider .noUi-handle {
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #4a89dc;
    box-shadow: 0 0 0 4px rgba(74, 137, 220, 0.15);
    cursor: pointer;
    width: 18px;
    height: 18px;
    right: -9px;
    top: -7px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  
  #dateSlider .noUi-handle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(74, 137, 220, 0.2);
  }
  
  #dateSlider .noUi-handle:active {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(74, 137, 220, 0.25);
  }
  
  #dateSlider .noUi-handle:before,
  #dateSlider .noUi-handle:after {
    display: none;
  }
  
  #dateSlider .noUi-pips {
    color: #888;
  }
  
  #dateSlider .noUi-marker-normal {
    background: #e0e0e0;
    height: 5px;
  }
  
  #dateSlider .noUi-marker-large {
    background: #bbb;
    height: 8px;
  }
  
  #dateSlider .noUi-tooltip {
    background: #4a89dc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    opacity: 0.9;
    transform: translateY(-5px);
    transition: all 0.2s ease;
  }

#rangeContainer{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 12px;
  color: #777;
}

.noUi-value-sub{
  margin-top:8px;
}

.noUi-horizontal .noUi-tooltip{
  left:-200%;
}