/* Styling voor de top comment contributors */
.top-comment-contributors-container {
    background-color: #ffffff;  /* Witte achtergrond voor de container */
    border-radius: 10px;        /* Afronding van de hoeken */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Lichte grijze schaduw zoals #slc-widget */
    width: 100%;
    max-width: 500px;           /* Je kunt dit aanpassen afhankelijk van je ontwerp */
    margin: 20px auto;          /* Centreert de container op de pagina */
    border: 1px solid #ddd;    /* Subtiele rand om het kader */
}

.top-comment-contributors-container h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.top-comment-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top-comment-item {
    padding: 5px 10px;  /* Minder padding voor kleinere tussenruimte */
    font-size: 1em;
    margin: 2px 0;      /* Minder marge tussen de items */
    background-color: #ffffff;  /* Witte achtergrond voor de lijstitems */
    border-radius: 5px;         /* Afronding van de lijstitems */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);  /* Lichte schaduw voor de lijstitems */
    display: block; /* Zorg ervoor dat de namen onder elkaar staan */
}

.top-comment-item:nth-child(odd) {
    background-color: #ffffff;  /* Alternatieve achtergrondkleur voor oneven items */
}

.comment-count {
    font-size: 0.9em;
    color: #777;  /* Lichtere kleur voor het commentaantal */
}

.top-comment-item.others {
    background-color: #ffffff;  /* Lichte gele achtergrond voor de 'Overige' sectie */
    border: 1px dashed #ffffff;  /* Gele dashed border */
    font-weight: normal;         /* Geen vette tekst voor de 'Overige' sectie */
}

.top-comment-item:hover {
    background-color: #ffffff;  /* Verwijder hover-effect voor lijstitems */
    cursor: default;            /* Verwijder de cursorverandering bij hover */
}

/* Verwijder hover-effect voor de 'Overige' sectie */
.top-comment-item.others:hover {
    background-color: #ffffff;  /* Blijf de gele achtergrond behouden voor 'Overige' */
}