﻿.tablecontainer {
}

.tablediv {
    width: 70%;
    margin: 0 auto;
}

.table-custom-1 {
    border: 1px black;
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    border-style: solid;
}

    .table-custom-1 tbody {
        display: table-row-group;
        vertical-align: middle;
        border-color: inherit;
    }

        .table-custom-1 tbody tr {
            display: table-row;
            vertical-align: inherit;
        }

            .table-custom-1 tbody tr:first-child {
                background-color: #CD0505;
                color:white;
            }

            .table-custom-1 tbody tr:nth-child(n + 2):hover {
                color: #212529;
                background-color: rgba(0,0,0,.075);
            }

            .table-custom-1 tbody tr:nth-child(n + 2) td:first-child {
                background-color: #EA9999;
            }


        .table-custom-1 tbody td {
            border: 1px #CCC;
            padding: 0.75rem;
            vertical-align: top;
            border-style: solid;
        }

    .table-custom-1 tfoot {
        display: table-row-group;
        vertical-align: middle;
        border-color: inherit;
    }

        .table-custom-1 tfoot tr {
            display: table-row;
            vertical-align: inherit;
        }

            .table-custom-1 tfoot tr:hover {
                color: #212529;
                background-color: rgba(0,0,0,.075);
            }

        .table-custom-1 tfoot td {
            border: 1px #CCC;
            padding: 0.75rem;
            vertical-align: top;
            border-style: solid;
        }
