body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between; 
    align-items: center;  
    background-color: rgba(88, 174, 255, 0.8);
    padding: 20px;
    text-align: center;
}

.sidebar-inhoud {
    float: left;
    padding: 10px;
}

.sidebarlist {
    list-style-position: outside;
    margin-bottom: 10px;
}

.sidebar {
    background-color: rgba(100, 215, 236, 0.8);
    color: white;
    height: 100vh;
    width: 25vh;
}

.Main-body {
    display: flex; 
    margin-left: 5px; 
    padding: 20px; 
    width: calc(100% - 35vh); 
}

.table-container {
    flex: 1; 
}

.bar-graph-container {
    background-color: rgba(240, 240, 240, 0.8);
    padding: 20px;
    border-radius: 8px;
    width: 300px; 
    height: auto; 
    margin-left: 20px; 
}

.rooster {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: rgba(21, 61, 72, 0.8);
    padding: 10px;
    gap: 20px 30px;
}

.rooster-box {
    background-color: rgba(25, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%; /* Full width for the table */
}

th,
td {
    text-align: left;
    padding: 8px;
}

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

.progress-container {
    margin-top: 20px;
    margin-left: 30vh;
    padding: 20px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 8px;
    width: 60%;
}

progress {
    width: 100%;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 5px;
}

progress::-webkit-progress-value {
    background-color: #4caf50;
    border-radius: 5px;
}

.bar {
    display: block;
    width: 100%;
    height: 30px;
    margin: 5px 0;
    background-color: #007bff;
}

.bar-label {
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}

.bar-container {
    text-align: center;
}

.afronden-knop {
    background-color: #4CAF50; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center; 
}

.afronden-knop:hover {
    background-color: #45a049; 
}

.afronden-knop .icon {
    margin-right: 5px; 
    font-weight: bold;
    font-size: 18px;
}
.opties-knop {
    display: block; 
    background-color: #4c87af; 
    color: white; 
    padding: 10px; 
    text-align: center; 
    text-decoration: none; 
    border-radius: 5px; 
    width: 160px; 
    height: 50px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;  
}