.blink {
    animation: blink 1s steps(1, end);
    animation-iteration-count: 2;
    background-color: #c51f1a;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #d7f3e3;
    border-radius:100px;
    border: 1px solid white;

}

th {
    vertical-align: bottom;
    background-color: #666;
    color: #fff;
}


th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

th[scope=row] {
    vertical-align: top;
    color: inherit;
    background-color: inherit;
    background: linear-gradient(90deg, transparent 0%, transparent calc(100% - .05em), #d6d6d6 calc(100% - .05em), #d6d6d6 100%);
}

.blue-background {
    background-color: #4f6d7a; /* Dæmpet blå */
    color: white;
    weight: bold;
}

.green-background {
    background-color:#81a69b; /* Dæmpet grøn */
    color: black;
    weight: bold;
}

.red-background {
    background-color: #a45d5d; /* Dæmpet rød */
    color: white;
    weight: bold;
}





