/**
 * Estilos para la campanita de notificaciones
 */

/* Botón de campanita */
#notificationsBtn {
  position: relative;
  transition: all 0.2s ease;
}

#notificationsBtn.active {
  color: var(--primary-color, #1a472a);
}

#notificationsBtn.active i {
  color: var(--primary-color, #1a472a);
}

/* Campanita desactivada */
#notificationsBtn:not(.active) i {
  color: var(--text-secondary, #6b7280);
}

/* Indicador de notificación activa */
#notificationsBtn.active::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--header-bg, #fff);
}

/* Animación al activar */
@keyframes bellRing {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  60% { transform: rotate(0); }
}

#notificationsBtn.active i {
  animation: bellRing 0.8s ease-in-out;
}
