/* RESET E GLOBAIS */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f4f6f9; /* Fundo claro moderno */
    color: #333;
    overflow-x: hidden;
}

/* LOGIN (Mantido tema escuro só no login se quiser, ou adapte) */
.login-body {
    background: #12161f; /* Fundo escuro para login */
    display: flex; min-height: 100vh; align-items: center; justify-content: center;
}
.login-card {
    background: #1e2530; padding: 32px 38px; border-radius: 12px; width: 340px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4); color: #fff;
}
.login-card input {
    width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 6px;
    border: 1px solid #2f3b49; background: #0f141b; color: #fff;
}

/* SIDEBAR (Menu Lateral) */
#wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar-wrapper {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.sidebar-heading {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
}

.list-group-item {
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.list-group-item:hover {
    background-color: #2d3845 !important;
    color: #fff !important;
}

.active-link {
    background-color: #2688ff !important; /* Azul destaque */
    color: #fff !important;
    font-weight: 600;
    border-left: 4px solid #fff;
}

/* CONTEÚDO PRINCIPAL */
#page-content-wrapper {
    width: 100%;
    background-color: #f4f6f9;
}

/* AJUSTES PARA AS PÁGINAS ANTIGAS (Channels, Categories) */
/* Para que as páginas que ainda não convertemos não quebrem no fundo claro */
.panel {
    background: #fff; /* Fundo branco nos cards */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    color: #333;
}

/* Ajuste de tabelas antigas para ficarem legíveis no fundo claro */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}