﻿:root{
    --tabellramme:orange;
}
body {
}
.tabell {
    width: auto;
    border: thin solid var(--tabellramme);
    padding: 5px;
    font-size: 0.9rem;
    border-collapse: collapse;
}
    .tabell th {
        /*height: 25px;*/
        padding-right: 5px;
        color: black;
        border: 1px solid #ddd;
        padding: 8px;
        font-weight: normal;
    }

    .tabell td {
        /*height: 25px;*/
        margin-right: 25px;
        border: 1px solid #ddd;
        padding: 8px;
    }

    .tabell tr{
        height: 30px;
    }

    .tabell tr:nth-child(even) {
        background-color:rgb(255, 140, 0, 0.05);
    }

        .tabell tr:hover {
            background-color: rgb(255, 140, 0, 0.08);
            cursor:pointer
        }

    .tabell thead {
        padding-left: 5px;
        background: rgba(255, 165, 0, 0.1);
        font-weight: normal;
        text-decoration-line:underline;
    }

    .tabell tbody{
        padding-left: 5px;
    }

.rth_div_tabell {
    overflow-y: auto; 
    height:500px;
}

.tabell_Lese {
    width: auto;
    border: thin solid #b6ff00;
    padding-left: 5px;
    padding-right: 5px;
    background: transparent;
    border-radius: 5px;
    margin-bottom: 5px;
}
    .thead_Lese {
        padding-left: 5px;
        background: transparent;
        font-weight: normal;
    }
    .tr_Lese {
        font-weight: normal;
    }
    .th_Lese {
        font-weight: normal;
        padding-left: 5px;
    }
    .td_Lese{
        padding-left: 5px
    }


tbody {
    padding-left: 5px;
}
.sokefelt {
    margin-top: 3px;
    margin-bottom: 3px;
}

.button_OK {
    background-color: rgba(255, 165, 0, 0.60);
    width: 100%;
    /*max-width: 400px;*/
    color: black;
    border: thin solid darkorange;
    border-radius: 5px;
    height: auto;
    box-shadow: 3px 3px 5px rgba(128, 128, 128, 0.2);
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .button_OK:hover {
        animation-name: byttButtonFarge;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        cursor: pointer;
    }

@keyframes byttButtonFarge {
    from {
        background-color: rgba(255, 165, 0, 0.60);
        color: black;
    }

    to {
        background-color: rgba(255, 165, 0, 0.80);
        color: black;
    }
}

.button_OK_Slett {
    background-color: rgba(255, 165, 0, 0.60);
    width: 100%;
    /*max-width: 400px;*/
    color: black;
    border: 2px solid darkorange;
    border-radius: 5px;
    height: auto;
    box-shadow: 3px 3px 5px rgba(128, 128, 128, 0.2);
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .button_OK_Slett:hover {
        animation-name: byttButtonFargeSlett;
        animation-duration: 0.3s;
        animation-fill-mode: forwards;
        cursor: pointer;
    }

@keyframes byttButtonFargeSlett {
    from {
        background-color: rgba(255, 165, 0, 0.60);
        color: black;
    }

    to {
        background-color: red;
        color: white;
    }
}


.oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
    color: #f48819;
}

.hoyde47{
    height: 47px;
}

