/* ── OralPeople Afiliaciones – estilos personalizados ── */

:root {
  --op-blue:   #0d6efd;
  --op-teal:   #00b4d8;
  --op-green:  #28a745;
  --op-orange: #fd7e14;
  --sidebar-w: 240px;
}

/* Sidebar */
#sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: #1a2035;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: width .25s;
}

#sidebar .brand {
  padding: 1rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#sidebar .brand img {
  max-height: 44px;
  filter: brightness(0) invert(1);
}

#sidebar .nav-link {
  color: rgba(255,255,255,.7);
  border-radius: 6px;
  margin: 2px 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  transition: background .18s, color .18s;
}

#sidebar .nav-link:hover,
#sidebar .nav-link.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

#sidebar .nav-section {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  padding: .75rem 1rem .25rem;
}

/* Main content offset */
#main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  background: #f0f2f5;
}

/* Topbar */
#topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Cards */
.metric-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .18s;
}

.metric-card:hover { transform: translateY(-2px); }

.metric-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Tables */
.table-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
}

.table thead th {
  background: #f8f9fa;
  border-bottom: 2px solid #e5e7eb;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6b7280;
  font-weight: 600;
}

/* Badges de estado */
.badge-activo    { background: #d1fae5; color: #065f46; }
.badge-retirado  { background: #fee2e2; color: #991b1b; }
.badge-activa    { background: #dbeafe; color: #1e40af; }
.badge-completada{ background: #d1fae5; color: #065f46; }
.badge-vencida   { background: #fee2e2; color: #991b1b; }
.badge-suspendida{ background: #fef3c7; color: #92400e; }

/* Progress bar libranza */
.progress { height: 6px; border-radius: 4px; }

/* Print */
@media print {
  #sidebar, #topbar, .no-print { display: none !important; }
  #main-content { margin-left: 0 !important; }
}

/* Responsive sidebar toggle */
@media (max-width: 768px) {
  #sidebar { width: 0; overflow: hidden; }
  #main-content { margin-left: 0; }
  #sidebar.show { width: var(--sidebar-w); }
}
