/* RESET GERAL */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body.bg-dark { background-color: #0a0a0a; color: #fff; line-height: 1.6; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* LAYOUT DO DASHBOARD */
.dashboard-layout { display: flex; min-height: 100vh; }

/* BARRA LATERAL (SIDEBAR) */
.sidebar { width: 260px; background: #000; border-right: 2px solid #ff9900; padding: 25px; display: flex; flex-direction: column; }
.sidebar-logo h2 { color: #fff; margin-bottom: 40px; font-size: 24px; text-align: center; }
.sidebar-logo span { color: #ff9900; }
.sidebar-nav { flex-grow: 1; }
.sidebar-nav a { display: block; color: #ccc; text-decoration: none; padding: 12px 15px; margin-bottom: 8px; border-radius: 6px; transition: 0.3s; font-size: 14px; }
.sidebar-nav a.active, .sidebar-nav a:hover { background: #ff9900; color: #000; font-weight: bold; }
.sidebar-footer { border-top: 1px solid #222; padding-top: 20px; }
.btn-logout { color: #ff4444; text-decoration: none; font-size: 14px; font-weight: bold; }

/* CONTEÚDO PRINCIPAL */
.dashboard-content { flex-grow: 1; padding: 40px; background: #0f0f0f; }
.dashboard-header { margin-bottom: 40px; }
.dashboard-header h1 { font-size: 28px; color: #ff9900; margin-bottom: 5px; }
.dashboard-header p { color: #888; }

/* CARTÕES DE INDICADORES */
.panel-card { background: #1a1a1a; padding: 25px; border-radius: 12px; border: 1px solid #333; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.panel-card h3 { margin-bottom: 20px; color: #ff9900; border-bottom: 1px solid #333; padding-bottom: 12px; font-size: 18px; }

/* TABELAS */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 15px; color: #666; border-bottom: 2px solid #333; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
td { padding: 18px 15px; border-bottom: 1px solid #222; font-size: 14px; vertical-align: middle; }

/* BOTÕES DE AÇÃO */
.btn-approve { background: #28a745; color: #fff; padding: 8px 15px; border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; }
.btn-reject { background: #dc3545; color: #fff; padding: 8px 15px; border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; margin-left: 5px; }
.btn-approve:hover { background: #218838; }
.btn-reject:hover { background: #c82333; }

/* CHECKLIST PAINEL MODELO */
.checklist-item { display: flex; justify-content: space-between; align-items: center; padding: 18px; background: #111; border-radius: 8px; margin-bottom: 12px; border: 1px solid #222; }
.check-pending { color: #ff4444; font-weight: bold; font-size: 12px; text-transform: uppercase; }
.check-ok { color: #28a745; font-weight: bold; font-size: 12px; text-transform: uppercase; }