﻿.fspsTableStyle05 {
    --main-bg-color: #c78a2e; /* Brown */
    --font-weight: bold;
    --label-align: right;
    --table-head-font-color: #FFFFFF;
    --table-font-size: 0.9em;
    --table-cell-padding: 5px 15px;
    --table-row-border-bottom: 1px solid #dddddd;
    --table-row-alternate-bg-color: #fafafa;
    --table-border-radius: 5px 5px 0 0;
}

table.fspsTableStyle05 {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: var(--table-font-size);
    min-width: 400px;
    border-radius: var(--table-border-radius);
    overflow: hidden;
}

table.fspsTableStyle05 thead tr {
    background-color: var(--main-bg-color, #c78a2e);
    color: var(--table-head-font-color);
    text-align: left;
    font-weight: var(--font-weight);
}

table.fspsTableStyle05 th,
table.fspsTableStyle05 td {
    padding: var(--table-cell-padding);
}

table.fspsTableStyle05 tbody tr {
    border-bottom: var(--table-row-border-bottom);
}

    table.fspsTableStyle05 tbody tr:nth-of-type(even) {
        background-color: var(--table-row-alternate-bg-color);
    }

    table.fspsTableStyle05 tbody tr:last-of-type {
        border-bottom: 2px solid var(--main-bg-color, #c78a2e);
    }

    table.fspsTableStyle05 tbody tr.active-row {
        font-weight: var(--font-weight);
        color: var(--main-bg-color, #c78a2e);
    }

table.fspsTableStyle05 td:first-of-type {
    text-align: var(--label-align);
    font-weight: var(--font-weight);
}
