.tab button:focus {
    outline: none;
}

/* Stijl de tablinks */
.tab {
    overflow: hidden;
    background-color: #fff;
}

/* Style de knoppen die worden gebruikt om de tabcontent te openen */
.tab button {
    background-color: inherit;
    float: left;
    border: 0;
    outline: 0;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3s, font-weight 0.3s;
    font-size: 16px;
    border-bottom: 3px solid transparent; /* Indicator voor de actieve tab */
}

/* Stijl voor de actieve tab en hover states */
.tab button:hover {
    background-color: #e0e0e0;
}

.tab button.active {
    background-color: #fff;
    font-weight: 500;
    border-bottom: 3px solid #3f51b5; /* Blauwe lijn voor actieve tab */
}

/* Stijl de tabcontent */
.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    animation: fadeIn 0.3s;
}

/* Animatie voor tabcontent */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}