/* public/assets/css/theme.css */
:root {
    /* Paleta Global */
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-sidebar: #020617;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #6366f1; /* Cor da Marca */
    --accent-glow: rgba(99, 102, 241, 0.3);
    --border: rgba(255, 255, 255, 0.1);
    --success: #10b981;
    --danger: #ef4444;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Layout App Shell (Sidebar + Conteúdo) */
.app-shell { display: flex; width: 100%; height: 100%; }

.sidebar {
    width: 260px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    background: var(--bg-dark);
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

/* Componentes Globais */
.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); }

.input-glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    color: white;
    width: 100%;
    margin-bottom: 15px;
}

.card-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}