body {
    background-color: #121212;
    color: white;
}

.channel-list {
    height: 80vh;
    overflow-y: auto;
}

.channel-item {
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #333;
    background: #1e1e1e;
}

.channel-item:hover {
    background: #333;
}

.active-channel {
    border-left: 5px solid #ff0000;
    background: #222;
}

.video-container {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

/* Logo için eklediğimiz stil */
.channel-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}