/******************************************************************************
 *
 * CodeMeter License Central WebDepot
 * design.css
 *
 * color definitions are located in scheme.css.
 * include scheme.css prior to this file
 *
 * (c) 2013 - 2023: WIBU-SYSTEMS AG
 * info@wibu.com
 *
 *************************************************************************** */

/* General style for tables */
table {
    border-spacing: 0px;
    width: 100%;
}

table td {
    padding: 8px 10px 8px 10px;
    position: relative;
}

table th {
    background-color: var(--table-head-background-color);
    color: var(--table-head-text-color);
    text-align: left;
    padding: 8px 10px 8px 10px;
    position: relative;
}

/* Style for all cells table */
table.list {
    width: 100%;
}

table.list td {
    border-bottom: 1px solid var(--border-color);
}

/* Style for table head */
table.list th {
    border-bottom: 1px solid var(--border-color);
}

table.list tr:nth-child(even)
{
    background-color: var(--table-even-background-color);
    color: var(--table-even-text-color);
}

table.list tr:nth-child(odd)
{
    background-color: var(--table-odd-background-color);
    color: var(--table-odd-text-color);
}

table.list .noentryfound {
    color: var(--table-text-color-disabled);
    text-align: center;
}

/* Width of column with checkbox */
.columnselect {
    padding-right: 0px;
    line-height: 16px;
    width: 20px;
}

div.table-line {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
}

table.list tr.clickable-table-row:hover:not(:has(.icon-button:hover)){
    background-color: var(--table-background-color-hover);
    cursor: pointer;
}

table.list tr.clickable-table-row:hover:not(:has(.icon-button:hover)) > td.clickable-table-cell {
    color: var(--primary-color-050);
    text-decoration: underline;
}

table.list tr.clickable-table-row:hover:not(:has(.icon-button:hover)) > td > div.table-line input.show {
    background-color: var(--main-button-icon-color-hover) !important;
}
