.checklist-pc {
    position: sticky;
    top: 16px;
    right: 16px;
    max-width: 280px;
    padding: 12px;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 13px;
}
.checklist-pc-header {
    font-weight: 600;
    margin-bottom: 8px;
}
.checklist-pc-progress {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.checklist-pc-bar {
    height: 100%;
    background: var(--accent, #6366f1);
    transition: width 200ms;
}
.checklist-pc-bar--complete { background: var(--success, #059669); }
.checklist-pc ul { list-style: none; padding: 0; margin: 0; }
.checklist-pc li {
    padding: 4px 0;
    display: flex; align-items: center; gap: 6px;
    cursor: pointer;
}
.checklist-pc li:hover { background: var(--hover-bg, #f9fafb); }
.checklist-pc .check-ok { color: var(--success); }
.checklist-pc .check-miss { color: var(--danger); }

/* Matrículas table — colocado aqui pra centralizar */
.matriculas-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}
.matriculas-table th, .matriculas-table td {
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.matriculas-table input {
    width: 100%;
    padding: 4px 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
}
.matricula-remove {
    color: var(--danger, #dc2626);
    font-size: 18px;
    padding: 2px 6px;
}

@media (max-width: 768px) {
    .checklist-pc {
        position: fixed;
        bottom: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
    }
}

/* Layout da tab Análise — grid 2 colunas (conteúdo + sidebar sticky) */
.analise-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}
.analise-content { min-width: 0; }
.analise-sidebar { /* sticky por dentro do .checklist-pc */ }
@media (max-width: 1024px) {
    .analise-layout { grid-template-columns: 1fr; }
    .analise-sidebar { order: -1; }
}
