body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Voeg deze regel toe */
}

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

.toggle-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Center align items vertically */
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.center-image {
    max-width: 100%;
    height: auto;
    height: 75vh;
    margin-right: 20px;
}

.excel-container {
    width: 80%;
    max-width: 1200px;
}

#excel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#excel-table th,
#excel-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#excel-table th:nth-child(2),
#excel-table td:nth-child(2) {
    max-width: 150px;
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#excel-table th:nth-child(10),
#excel-table td:nth-child(10) {
    max-width: 150px;
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#excel-table th {
    background-color: #f2f2f2;
}

#excel-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

body.dark-mode #excel-table th {
    background-color: #333333;
    color: white; /* Make header text white in dark mode */
}

body.dark-mode #excel-table tr:nth-child(even) {
    background-color: #444444;
}

.form-block {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    margin-right: 2px;
}

.form-block.w {
    background-color: green;
    border-radius: 25%;
}

.form-block.g {
    background-color: orange;
    border-radius: 25%;
}

.form-block.v {
    background-color: red;
    border-radius: 25%;
}

#excel-table th {
    background-color: #f2f2f2;
    color: black; 
}

#excel-table tr:nth-child(16) {
    background-color: #009FE3;
    color: white;
}

#excel-table tr:nth-child(1),
#excel-table tr:nth-child(2) {
    background-color: #008000;
    color: white;
}

#excel-table tr:nth-child(3),
#excel-table tr:nth-child(4),
#excel-table tr:nth-child(5),
#excel-table tr:nth-child(6),
#excel-table tr:nth-child(7),
#excel-table tr:nth-child(8) {
    background-color: #90EE90;
    color: black;
}

body.dark-mode #excel-table tr:nth-child(1),
body.dark-mode #excel-table tr:nth-child(2) {
    background-color: #006400; /* Dark green */
    color: white;
}

body.dark-mode #excel-table tr:nth-child(3),
body.dark-mode #excel-table tr:nth-child(4),
body.dark-mode #excel-table tr:nth-child(5),
body.dark-mode #excel-table tr:nth-child(6),
body.dark-mode #excel-table tr:nth-child(7),
body.dark-mode #excel-table tr:nth-child(8) {
    background-color: #90EE90; /* Light green */
    color: black;
}

body.dark-mode #excel-table tr:nth-child(16) {
    background-color: #009FE3; /* Light blue */
    color: white;
}