/* Font */
@font-face {
    font-family: 'Bolder-Bold';
    src: url('../fonts/Bolder-Bold.woff2') format('woff2'),
    url('../fonts/Bolder-Bold.woff') format('woff'),
    url('../fonts/Bolder-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Bolder-Regular';
    src: url('../fonts/Bolder-Regular.woff2') format('woff2'),
    url('../fonts/Bolder-Regular.woff') format('woff'),
    url('../fonts/Bolder-Regular.ttf') format('truetype');
}

/* General document */
body {
    margin: 0;
    font-family: Bolder-Regular, sans-serif;
}

strong {
    font-family: Bolder-Bold, sans-serif;
}

/* Alternate table colors */
.green {
    background-color: #00811F;
    color: white;
}

.green tbody tr:nth-child(odd) {
    background-color: inherit;
}

.green tbody tr:nth-child(even) {
    background-color: #006E32;
}

.green thead tr th {
    border-bottom: 2px solid white;
}

/* Table styling */
table {
    width: 100%;
    height: fit-content;
    border: 0;
    border-collapse: separate;
    border-spacing: 0 5px;
}

thead {
    font-family: Bolder-Bold, sans-serif;
}

thead tr th:first-child {
    text-align: left;
}

thead tr th {
    text-align: right;
    border-bottom: 2px solid black;
    border-collapse: separate;
    vertical-align: baseline;
}

tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

tbody tr:nth-child(even) {
    background-color: #EFF4F6;
}

thead tr th:first-child, tbody tr td:first-child {
    padding-left: 16px;
}

thead tr th:last-child, tbody tr td:last-child {
    padding-right: 16px;
}

th, td {
    padding: 16px;
}

tbody tr td {
    text-align: right;
    border: none;
}

tbody tr td:first-child.number {
    text-align: left;
    width: 20px;
}

.text {
    padding-left: 0;
    text-align: left;
}

tbody tr td:first-child {
    text-align: left;
}

tbody tr:nth-child(even) {
    background-color: #EFF4F6;
}

tfoot {
    font-family: Bolder-Bold, sans-serif;
}

tfoot tr {
    background-color: #EFF4F6;
}

tfoot th {
    padding-left: 16px;
    text-align: left;
    border-top: 2px solid black;
}

tfoot tr td {
    text-align: right;
    border-top: 2px solid black;
}

tfoot tr td:last-child {
    padding-right: 16px;
}

/* Alternate styling for smaller tables */
.small-layout {
    border-collapse: collapse;
}

.small-layout th {
    font-family: Bolder-Bold, sans-serif;
    text-align: center;
    border: 1px solid #EFF4F6;
}

.small-layout td {
    padding-left: 16px;
    text-align: left;
    border: 1px solid #EFF4F6;
}

.small-layout tbody tr:nth-child(even) {
    background-color: white;
}

/* Specific table styles */

#top-10-meldingen tbody tr:nth-child(even) {
    background-color: #E4EEF1;
}