:root {
    --progress-bar-height: 12px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* Choose a readable font */
    padding-top: var(--progress-bar-height);
}

table {
    width: 100vw;
    height: calc(100vh - var(--progress-bar-height));
    margin: 0;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    
    /* Increase the padding for a larger font size */
    text-align: left;
    border-bottom: 0.5px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.center {
    text-align: center;
}

.allergies {
    text-align: left;
    font-size: 16px;
    white-space: pre-wrap;
}


.welpen-row {
    background-color: #f5f5f5;
}



.jvgs-row {
    background-color: #f5f5f5;
}



.pioniers-row {
    background-color: #f5f5f5;
}



.bevers-row td:first-child {
    background-color: purple;
    color: white;
    font-weight: bold;
}

.welpen-row td:first-child {
    background-color: orange;
    color: white;
    font-weight: bold;
}

.wolven-row td:first-child {
    background-color: red;
    color: white;
    font-weight: bold;
}

.jvgs-row td:first-child {
    background-color: blue;
    color: white;
    font-weight: bold;
}

.vgs-row td:first-child {
    background-color: green;
    color: white;
    font-weight: bold;
}

.pioniers-row td:first-child {
    background-color: fuchsia;
    color: white;
    font-weight: bold;
}

.seniors-row td:first-child {
    background-color: yellow;
    color: black;
    font-weight: bold;
}

/* Responsive font sizes */
@media (max-width: 600px) {

    th,
    td {
        font-size: 12px;
        /* Increase the font size for smaller viewports */
    }
}

@media (min-width: 601px) and (max-width: 900px) {

    th,
    td {
        font-size: 16px;
        /* Increase the font size for medium-sized viewports */
    }
}

@media (min-width: 901px) and (max-width: 1200px) {

    th,
    td {
        font-size: 26px;
        /* Increase the font size for medium-sized viewports */
    }
}

@media (min-width: 1201px) and (max-width: 1500px) {

    th,
    td {
        font-size: 34px;
        /* Increase the font size for medium-sized viewports */
    }
}

@media (min-width: 1501px) {

    th,
    td {
        font-size: 42px;
        /* Increase the font size for larger viewports */
    }
}

body {
    margin: 0;
    overflow: hidden;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: var(--progress-bar-height);
    background-color: green;
    animation: none;
}

@keyframes progress-fill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
