/* ============================
   TITULOS DE SECCIÓN
============================ */
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

/* ============================
   CARDS DE MÉTRICAS / ALERTAS / KILOS
============================ */
.metric-card {
  background: white;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.8rem;
}

.metric-label {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 0.3rem;
}

/* ============================
   ACCIONES RÁPIDAS
============================ */
.quick-action {
  display: block;
  background: white;
  border-radius: 1rem;
  padding: 1.4rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.quick-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.quick-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 0.8rem;
}

.quick-label {
  font-size: 1rem;
  font-weight: 600;
}

/* ============================
   TABLA RANKING
============================ */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa;
}

.table th {
  font-weight: 700;
}