body {
    font-family: Arial, sans-serif;
    background-color: #3c2f2f;
    margin: 0;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.widget {
    width: 300px;
    background-color: #65472a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #6d5353;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.content {
    padding: 15px;
}

.streamer {
    background-color: #533728;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s;
}

.streamer:hover {
    background-color: #6b4734;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.info {
    flex-grow: 1;
}

.name {
    font-weight: bold;
    margin-bottom: 3px;
    color: #ffffff;
}

.status {
    font-size: 14px;
}

.online {
    color: #4caf50;
    font-weight: bold;
}

.offline {
    color: #f44336;
    font-weight: bold;
}

.viewers {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: bold;

}


.community-followers {
    font-size: 14px;
    color: #a0a0a0;
}

.community-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.community-button {
    flex: 1;
    margin: 0 5px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #6d5353;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.community-button:hover {
    background-color: #7d6363;
}


.streamers-list {
    max-height: 600px;
    overflow-y: auto;
}

.streamers-list::-webkit-scrollbar {
    width: 8px;
}

.streamers-list::-webkit-scrollbar-track {
    background: #3c2f2f;
}

.streamers-list::-webkit-scrollbar-thumb {
    background-color: #6d5353;
    border-radius: 4px;
}
