﻿.test-report-viewer-linear-gradient {
    background-image: linear-gradient(#ffffff, #f9f9f9);
}

.test-scope-header-cats-report {
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-image: linear-gradient(#ffffff, #f9f9f9);
    text-align: center;
    /*box-shadow: 0px 3px 13px rgb(0 0 0 / 7%);*/
    border: 1px solid #c6c6c6 !important;
}

.test-information-dropdown {
    padding: 10px;
    /*display: none;*/
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-image: linear-gradient(#ffffff, #f9f9f9);
}

.overview-bar {
    transition: all 0.3s;
    cursor: pointer;
    width: 25px;
}

    .overview-bar:hover {
        width: 35px;
        height: calc(height + 10px);
    }

.overview-bar-passed:hover .overview-bar-text-passed {
    color: var(--antonBlueColor);
}

.overview-bar-text {
    transition: all 0.3s;
    cursor: pointer;
}

.archive-table {
    width: 100%;
    table-layout: auto;
    border-spacing: 2em;
}

    .archive-table tr td {
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 2px 0 0 2px;
    }

    .archive-table p {
        margin: 0.5em 0;
    }

    .archive-table tr:first-child {
        border-bottom: 1px solid #dee2e6;
        position: relative;
        z-index: 3;
    }

    .archive-table tr:first-child {
        z-index: 10;
        position: relative;
        box-shadow: 0 3px 5px -4px gray;
    }

    .archive-table tr:last-child {
        border-bottom: 0;
    }

    .archive-table tr:nth-child(odd) {
        background-color: #eee;
    }

    .archive-table thead {
        background-color: #eee;
    }

    .archive-table thead {
        position: sticky;
        top: 0;
    }

.working-table {
    clear: both;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 90%;
    border-spacing: 3px;
    min-width: 100%;
    white-space: nowrap;
}

    .working-table tr td {
        padding-top: 0.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 0.25rem;
    }

.scrollable-table-x-axis > tr td:first-child {
    position: sticky;
    left: 0;
}


.test-case-table-container {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

    .test-case-table-container > div {
        padding: 5px 5px;
    }

        .test-case-table-container > div.group-title {
            background-color: var(--blue) !important;
        }

        .test-case-table-container > div.d-block.group-item:nth-child(even) {
            background-color: #FFF;
        }

        .test-case-table-container > div.d-block.group-item:nth-child(odd) {
            background-color: #EEE;
        }


.additional-info-options {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
    background-color: #FFF;
    z-index: 90;
}

    .additional-info-btn:focus ~ .additional-info-options, .additional-info-btn:hover ~ .additional-info-options, #additional-hidden-square:hover ~ .additional-info-options, .additional-info-options:hover, .additional-info-box:hover ~ .additional-info-options, .additional-info-box:focus ~ .additional-info-options {
        visibility: visible;
        opacity: 100;
    }

.additional-info-table tr {
    background-color: #f2f2f2;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.additional-info-table td {
    padding: 6px;
}


    .additional-info-table td p {
        color: black;
        font-size: 14px;
        font-weight: 400;
    }

.additional-info-table tr:hover {
    background-color: #ddd;
}

.additional-info-table tr:last-child {
    border-radius: 0 0 15px 15px;
}

.additional-info-btn {
    /*    width: 24px;
    height: 24px;*/
    border-radius: 100%;
    background-color: var(--blue);
    color: white;
    transition: all 0.5s;
    border: 0px;
    display: flex;
    text-align: center;
    padding: 6px;
}

    .additional-info-btn:hover {
        background-color: var(--blue);
    }

.test-log-table {
    width: 100%;
    table-layout: fixed;
    max-width: 100%;
}

    .test-log-table thead {
        background: white;
    }

    .test-log-table tr {
        display: flex;
    }

        .test-log-table tr td:last-child {
            /* flex: 1;*/
        }

        .test-log-table tr:nth-child(even) {
            background-color: #efefef;
        }

.display-log-item {
    position: relative;
    bottom: 0;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    -webkit-box-shadow: 0px 0px 20px -15px #000000;
    box-shadow: 0px 0px 20px -15px #000000;
}

.display-log-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    grid-column-gap: 10px;
    column-gap: 10px;
    justify-content: center;
    overflow: hidden;
}

.hover-row-blue:hover {
    background-color: var(--blue) !important;
}

.active-row-blue:active {
    background-color: var(--blue) !important;
}

.active-row-blue {
    background-color: var(--blue) !important;
}