.styled-table {
    border-collapse: collapse;
    font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px 5px 0 0 ;
    overflow: hidden;
}

.styled-table-centred {
    min-width: 400px;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

.styled-table-left {
    min-width: 400px;
    width: 98%;
    margin-left: 0;
}

.styled-table thead tr {
    background-color: orange;
    color: #ffffff;
    text-align: left;
}

.styled-table-small {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95em;
    font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    min-width: 400px;
    width: 98%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px 5px 0 0 ;
    overflow: hidden;

}

.styled-table-small thead tr {
    background-color: #999999;
    color: #ffffff;
    text-align: left;
}

.styled-table-small th,
.styled-table-small td,
.styled-table th,
.styled-table td {
    padding: 8px 12px;
}

.styled-table-small th.centred,
.styled-table-small td.centred,
.styled-table th.centred,
.styled-table td.centred {
    text-align: center;
}

.styled-table-small tbody tr {
    border-bottom: 1px solid #999999;

}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.styled-table-small tbody tr.alt-row,
.styled-table tbody tr.alt-row{
    background-color: #f3f3f3;
}

.styled-table-small tfoot tr.small {
    border-bottom: 2px solid #999999;
}

.styled-table tfoot tr {
    border-bottom: 2px solid orange;
}


.styled-table-small .details_container .column .field_name ,
.styled-table .details_container .column .field_name {
    width: 100px;
    display: inline-block;
    padding: 5px;
}

@media (min-width: 912px) {
    .styled-table-small .details_container .column ,
    .styled-table .details_container .column {
        width: 25%;
        float: left;
    }
}