<!DOCTYPE html>
<html lang="es">
<%- include('partials/head') %>
<body>
    <%- include('partials/sidebar') %>

    <!-- MAIN CONTENT -->
    <div class="main-content">
        <h1>Panel de Control</h1>

        <!-- Botón Limpiar Terminal para el Dashboard -->
        <button onclick="clearLogs()" style="position: fixed; top: 20px; right: 20px; background: #222; color: #D4AF37; border: 1px solid #D4AF37; padding: 8px 15px; cursor: pointer; z-index: 9999; font-weight: bold; border-radius: 6px; box-shadow: 0 0 10px rgba(0,0,0,0.5);">
            🧹 Limpiar Logs
        </button>
    
    <%- include('partials/tabs/overview') %>
    <%- include('partials/tabs/multistream') %>
    <%- include('partials/tabs/timers_audio') %>
    <%- include('partials/tabs/timers_chat') %>
    <%- include('partials/tabs/custom_timers') %>
    <%- include('partials/tabs/config') %>
    <%- include('partials/tabs/promotion') %>
    <%- include('partials/tabs/users') %>
    <%- include('partials/tabs/commands') %>
    <%- include('partials/tabs/customization') %>
    <%- include('partials/tabs/whitelist') %>
    <%- include('partials/tabs/testing') %>
    <%- include('partials/tabs/maintenance') %>
    </div>
    <%- include('partials/scripts') %>
</body>
</html>