body {
    display: flex;
    flex-direction: row;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.player-container {
    flex: 3;
    padding: 20px;
    background: linear-gradient(to bottom, #b31e9d, #0b7d7b);
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    max-height: 90%;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.lista-canais {
    flex: 1;
    background: linear-gradient(to bottom, #eea8e3, #435e68);
    overflow-y: auto;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.canal {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.canal:hover {
    background-color: #f0f0f0;
}

.canal img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.canal span {
    font-size: 16px;
    font-weight: bold;
}
