/* Widget container */
#slc-widget {
    position: sticky;
    top: 100px;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15); /* donkerdere rand */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12); /* subtiele schaduw voor diepte */
    border-radius: 12px;
    padding: 16px;
    z-index: 333;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border 0.3s ease;
}

#slc-widget:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Scroll wrapper */
#slc-comments-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* Lijst */
#slc-comments-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollComments 120s linear infinite;
}

/* Elk item als "kaartje" */
#slc-comments-wrapper li {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
    transition: background 0.2s ease;
}

/* Hover effect op items */
#slc-comments-wrapper li:hover {
    background-color: #eaeaea;
}

/* Auteur */
.comment-author {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

/* "Reageert op..." */
.comment-replying-to {
    font-size: 12px;
    color: #888;
    font-style: italic;
    display: block;
    margin-bottom: 6px;
}

/* Sterke tekst */
strong {
    color: #222;
}

/* Reactie icoon */
.comment-icon {
    font-size: 18px;
    margin-right: 6px;
    color: #00bfae;
}

/* Scroll animatie */
@keyframes scrollComments {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}