﻿#sideTable table {
    position: relative;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0px;
    /*top: 130px; */
    color: black;
    width: auto;
    /*z-index: 2;*/
    background-color: white;
    margin: 0px 0px 0px 0px;
}

    #sideTable table th {
        background: black;
        font-weight: 500;
        padding: 0px 0px;
        text-align: center;
        color: yellow;
    }

    #sideTable table tbody {
        padding: 0;
        margin: 0px 0px 0px 0px;
        border-collapse: collapse;
        border-spacing: 0px;
    }

    #sideTable table td {
        padding: 05px 10px;
    }


    #sideTable table tr:nth-child(odd) {
        background-color: silver;
    }

    #sideTable table tr:hover {
        background: cyan;
    }

