﻿.table-sys {
    border: 1px solid #000000;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 2px 3px 2px 3px;
    /*table-layout: fixed;*/
    width: 100%;
}

    .table-sys th {
        padding: 2px 3px 2px 3px;
        border: 1px solid #000000;
        background: #1b90bb;
        color: #FFFFFF;
        font-weight: bold;
        text-align: center
    }

    .table-sys td {
        padding: 2px 3px 2px 3px;
        border: 1px solid #000000;
        text-align: center;
    }

    .table-sys tr {
        background-color: #fafafa;
        color: #000000;
        text-align: center;
    }

        .table-sys tr:nth-child(odd) {
            background-color: #e3eeb0;
            color: #000000
        }

        .table-sys tr:hover {
            background-color: rgb(157, 206, 157);
            color: #fdfefb;
        }

    .table-sys .mobile-head {
        display: none;
    }
