﻿.content{
    --table-border-color: #9a9a9a46 !important;
}

@media all and (min-width: 1100px ){
    .techtable {
        overflow-x: hidden;
    }

}

table{
}

.table-row input[type=checkbox]{
    transform:scale(1.2);
}

.table-row{
    overflow: hidden;
    transition: all 0.1s;
    height: 30px !important;
}

.visible{
    height: 33px;
}
.not-visible{
    height: 0px;
}

.hover:hover{
    background: #8686862b !important;
}

.table-row:hover .name{
    color: var(--theme-text) !important;
}


.no-content{
    height: fit-content;
    column-count: 3 !important;
    column-span: all !important;
}
    .no-content td {
    }
.no-content img{
    width: 55px;
    margin-block: 10px;
}
    .no-content button {
        color: var(--theme-text-color);
        background: none;
        border: 1px solid var(--default-border-contrast);
        border-radius: 3px;
        padding-inline: 10px;
        padding-block: 3px;
    }

.table-link:hover{
    color: var(--app-blue);
    font-weight:600;
    text-decoration: underline 1px solid var(--app-blue);
    cursor:pointer;
}

.not-hidden {
    animation: fadeinrow 0.1s linear forwards;
}

.hidden {
    animation: fadeoutrow 0.1s linear forwards;
}


/* Firefox-specific CSS */
@supports (-moz-appearance: none) {
    .hidden {
        display:none; /* Example style for Firefox */
    }
}

@keyframes fadeoutrow {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 0;
        display:table-row;
    }
    100% {
        opacity: 0;
        display:none;
    }
}

@keyframes fadeinrow {
    0% {
        display: table-row;
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}