/* Estilos para el Dashboard y Paneles Privados */
.admin-wrapper {
  display: flex;
  min-height: calc(100vh - 80px);
}

.admin-sidebar {
  width: 280px;
  background: var(--primary-dark);
  color: #fff;
  padding: 1.5rem 1rem;
  flex-shrink: 0;
}

.sidebar-user-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.user-avatar { font-size: 2.2rem; }
.user-name { font-weight: 700; font-size: 0.95rem; display: block; }
.user-badge { font-size: 0.75rem; color: var(--gold); }

.sidebar-nav ul { list-style: none; }
.nav-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin: 1.2rem 0 0.5rem 0.8rem;
}
.sidebar-link {
  display: block;
  padding: 0.7rem 0.8rem;
  color: #CBD5E1;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active-actas {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-main {
  flex: 1;
  background: var(--bg-light);
  padding: 2rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.admin-title { font-size: 1.8rem; }
.admin-subtitle { color: var(--text-muted); font-size: 0.9rem; }

.kpi-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.kpi-icon { font-size: 2.5rem; }
.kpi-num { font-size: 2rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.kpi-label { font-size: 0.85rem; color: var(--text-muted); }
.highlight-card { border-left: 4px solid var(--gold); }

/* Módulo Actas */
.acta-official-document {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--radius);
}
.acta-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.acta-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.acta-section { margin-bottom: 2rem; }
.acta-section h3 { font-size: 1.1rem; border-bottom: 2px solid var(--primary); padding-bottom: 0.4rem; margin-bottom: 0.8rem; }
.acta-box-text { line-height: 1.8; color: #334155; }
