﻿.sticky {
    position: sticky !important;
    top: 0;
}

.scrollable {
    overflow: hidden;
    overflow-y: scroll;
}

.table-container {
    max-height: 50em;
    min-height: 50em;
}

.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-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%);
    }
}

/* Remove bold from table headers */
th, thead span {
    font-weight: normal !important;
}
