/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
  box-shadow: 2px 2px 7px 0 rgb(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::root {
  view-transition-name: none;
}

@keyframes slide-in {
  from {
    opacity: 0;
    /* transform: translateY(-100%); */
  }

  to {
    opacity: 1;
    /* transform: translateY(0%); */
  }
}

/* ...and then apply it: */
.animation__opacity {
  animation: slide-in 500ms;
}

[x-cloak] {
  display: none !important;
}

.table-static {
  width: 100%;
  height: 50vh;
  background-color: transparent;
}
