:root {
    --tr-hover-color:blue;

}


table.tablesorter thead tr .header {
    background-image: url(../img/bg.gif);
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
    background-image: url(../img/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
    background-image: url(../img/desc.gif);
}

.tablesorter-filter {
    padding: 1px;
}

.tablesorter, .tablesorter-filter {
    width: auto;
}

/*
.clamped {
https://www.mediaevent.de/css/text-overflow.html
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: horizontal;
}
*/

.clamped {
    /*width:25%;*/
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}

table.tablesorter {
    width: 100%;
    table-layout: auto;

}

#kontakttable tr :first-child{
    text-align: end;
}

#kontakttable tr :nth-child(2){
        padding-left: 1.5rem;
}



.hover:hover
 {
    background: #3ed9ff !important;
    /*color: var(--tr-hover-color);
    border :2px solid var(--tr-hover-color);*/

}

.focus-highlight td:focus::before, .focus-highlight th:focus::before {
    background-color: lightblue;
}


table .print {
    display: none;
}


.table-scrollable {
    width: 100%;
    overflow-y: auto;
    margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);
}

#uksktable.table td {
    vertical-align: unset !important;
}