table {
    width: 100%;

    thead {
        text-align: left;
    }
}


table {
    padding: 5px;
    border-spacing: 0;

    thead {
        th {
            border: none;
            padding: 5px;
            background-color: rgb(201, 201, 201);
        }
    }

    tbody {
        td {
            padding: 4px;

            a {
                font-weight: bold;
                color: black !important;
                text-decoration: none;
            }
        }

        tr:nth-child(even) {
            background-color: rgb(235, 235, 235);
        }
    }
}