﻿.sticky {
    position: sticky !important;
    top: 0;
}

.scrollable {
    overflow: hidden;
    overflow-y: scroll;
}

.table-container {
/*    max-height: 30em;
    min-height: 30em;*/
}

.bg-white {
    background: white;
}

.page-number:hover {
    cursor: pointer;
    color: rgb(0, 81.6, 163.2);
}


.placeholder {
  animation: skeleton 1s linear infinite alternate;
}
.placeholder .content{
  visibility: hidden
}

.w-5 {
    min-width: 5em;
}


.w-10{
    min-width: 10em;
}

.w-15{
    min-width: 15em;
}

@keyframes skeleton {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
