.who-is-online-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px 20px;
    max-width: 100%;
    font-family: Arial, sans-serif;
}

.who-is-online-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.online-users {
    list-style: none;
    margin: 0;
    padding: 0;
}

.online-users li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-dot.online {
    background: #4caf50; /* grüner Punkt für online */
}

.username {
    color: #0073aa;
    font-weight: 500;
    text-decoration: none;
}

.username:hover {
    text-decoration: underline;
}

.no-users {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}