.channel-button {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #374151;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.channel-button:hover {
    background-color: #f3f4f6;
}

.channel-logo {
    width: 48px;
    height: 48px;
    margin-right: 0.75rem;
    object-fit: contain;
}

@media (max-width: 768px) {
    .channel-button {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .channel-logo {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
}

/* Tema Escuro */
body[data-theme="dark"] {
    background-color: #121212;
    color: #e0e0e0;
}

body[data-theme="dark"] header {
    background-color: #1e1e1e;
    border-color: #333;
}

body[data-theme="dark"] header h1 {
    color: #e0e0e0;
}

body[data-theme="dark"] .bg-white {
    background-color: #1e1e1e;
    border-color: #333;
}

body[data-theme="dark"] .text-gray-800 {
    color: #e0e0e0;
}

body[data-theme="dark"] .text-gray-400 {
    color: #a0a0a0;
}

body[data-theme="dark"] .border-gray-200 {
    border-color: #333;
}

body[data-theme="dark"] .bg-gray-100 {
    background-color: #2a2a2a;
}

body[data-theme="dark"] .channel-button {
    color: #e0e0e0;
}

body[data-theme="dark"] .channel-button:hover {
    background-color: #333;
}

body[data-theme="dark"] input {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-color: #444;
}

body[data-theme="dark"] #themeToggle {
    background-color: #333;
    color: #e0e0e0;
}

body[data-theme="dark"] #themeToggle:hover {
    background-color: #444;
}
