﻿table.table {
    width: 100%;
    border: 10px solid #fff;
    border-radius: 10px;    
    position: relative;
    background: #fff;
    border-collapse: separate;
    border-spacing: 0px;
    box-shadow: 0px 0px 1px 1px #eaeaea;
    margin-bottom: 20px;
}

    table.table thead th {
        color: #fff;
        background: #4f0077;
        font-weight: bold;
        text-align: left;
        padding: 10px 20px;
        font-size: 1rem;
    }

    table.table tbody td {
        font-size: 1rem;
        font-weight: normal;
        padding: 10px 20px;
        color: #000;
    }

table.striped tbody tr:nth-child(odd) {
    background: #f6f7ff;
}

table.cmyk-purple th {
    background: #98139c;
}

table.cmyk-orange th {
    background: #f38901;
}

table.cmyk-green th {
    background: #84a919;
}

table.cmyk-blue th {
    background: #2abad9;
}

table.solid-purple th {
    background: #4f0077;
}

table.solid-pink th {
    background: var(--primary-color);
}

table.solid-orange th {
    background: #ec5014;
}

table.solid-yellow th {
    background: #fcdd00;
}

table.solid-green th {
    background: #639b1d;
}

table.solid-light-green th {
    background: #d2ea71;
}

table.solid-blue th {
    background: #008fad;
}

table.solid-light-blue th {
    background: #72cde3;
}
