.hiding-container {
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.hiding-container[data-state="visible"] {
  max-height: 1500px;
  opacity: 1;
}
.hiding-container[data-state="hidden"] {
  max-height: 0px;
  opacity: 0;
}
.table-with-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.table-with-scroll::-webkit-scrollbar-track {
  background: rgb(46, 45, 43);
  border-radius: 4px;
}
.table-with-scroll::-webkit-scrollbar-thumb {
  background: rgb(99, 99, 99);
  border-radius: 4px;
}
.table-with-scroll::-webkit-scrollbar-thumb:hover {
  background: rgb(85, 85, 85);
}
.table-with-scroll::-webkit-scrollbar-track:horizontal {
  height: 4px;
}
.table-with-scroll::-webkit-scrollbar-thumb:horizontal {
  height: 4px;
}
.smart-draining-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(255, 238, 83);
  cursor: pointer;
}
