/*
    Document   : item-table
    Created on : May 17, 2013, 1:19:12 PM
    Author     : dmitry
    Description:
        Purpose of the stylesheet follows.
*/

table.items {
    width: 100%;

    margin-top: 25px;
    margin-bottom: 25px;
}

table.items thead {
    color: var(--color-black);
    font-size: 16px;
    font-weight: normal;
}

table.items th {
    text-align: left;
    border-bottom: #a1a6a9 solid 2px;

    padding: 5px;
}

table.items tr:nth-child(odd),
table.items tr.uncolored-row {
    background-color: white;
}

table.items tr:nth-child(even),
table.items tr.colored-row {
    background-color: var(--color-gray-200);
}

table.items tr.selected {
    background-color: #1d8cc9;
}

table.items tr.selected td {
    color: whitesmoke !important;
}

table.items td {
    padding: 5px;
    color: var(--color-gray-500);
    font-size: 16px;
    vertical-align: top;
}

table.items td b{
    color: var(--color-black);
}

table.items td .error {
    color: #af1a45;
    font-size: 13px;
}

table.items td.category {
    padding-top: 25px;
    background-color: white;

    color: rgb(77, 77, 77);
    font-weight: bold;
    font-size: 18px;
}

table.items td.category .details-link {
    display: inline-block;
    margin-left: 15px;
}

table.items td.category .details-link a {
    font-weight: normal;
    font-size: 15px;
}

table.items td.bt-line {
    border-bottom: #f1f1f1 solid 1px;
}

table.items td.top-line {
    border-bottom: #f1f1f1 solid 1px;
}

table.items td .warning {
    font-size: 13px;
    text-wrap: auto;
    color: red;
}

table.items td .svc-info {
    font-size: 13px;

    color: green;
    font-weight: bold;
}

table.items td .input-period-end {
    font-size: 13px;
    width: 100px !important;
    padding: 4px 0px;
}

table.items td .info {
    font-size: 13px;

    color: #7a4494;
}

table.items td .info2 {
    color: var(--color-blue-600);
    font-size: 14px;
}

table.items td .info .balloon {
    cursor: pointer;
    border-bottom: #f1f1f1 solid 1px;
}

table.items td span.ui-corner-all {
    display: inline-block;
    margin-top: 5px;
    margin-right: 3px;
    font-size: 12px;
    font-weight: bold;
}

table.items td span.ui-corner-all.software-label {
    background-color: #800080;
}
