﻿/* Report tables */
table.report-table {
    background-color: #fff;
    border: solid 2px #6c7ae0;
    margin-bottom: 20px;
}

    table.report-table tr th, table.report-table tr td {
        padding-right: 3px;
    }

    table.report-table thead tr th {
        font-weight: 600;
        font-size: 110%;
        padding: 8px;
    }

    table.report-table tbody tr {
        border-bottom: 1px solid #e5e5e5;
    }

        table.report-table tbody tr td {
            padding: 5px;
        }

            table.report-table tbody tr td div.data-ok {
                background-color: #5cb85c;
                margin: auto;
                text-align: center;
                display: inline-block;
                color: #fff;
                padding: 2px 5px;
                border-radius: 4px;
            }

            table.report-table tbody tr td div.data-warn {
                background-color: #eed202;
                text-align: center;
                display: inline-block;
                color: #fff;
                margin: auto;
                padding: 2px 5px;
                border-radius: 4px;
            }

            table.report-table tbody tr td div.data-err {
                background-color: #d9534f;
                text-align: center;
                display: inline-block;
                color:#fff;
                margin: auto;
                padding: 2px 5px;
                border-radius: 4px;
            }


        table.report-table tbody tr.bold td {
            background-color:#f8f8f8;
            font-weight: bold;
        }

    table.report-table td {
        color: #808080;
        line-height: 1.4;
    }

    table.report-table th {
        color: #fff;
        line-height: 1.4;
        text-transform: uppercase;
        background-color: #6c7ae0;
    }

    table.report-table tr:hover td {
        background-color: #fcebf5;
    }

    table.report-table tr td:hover {
        background-color: #e03e9c !important;
        color: #fff !important;
    }