/* ================================ 
   🌟 CONTENEDOR PRINCIPAL
   ================================ */






/* ================================ 
   🌟 CONTENEDOR DE AVATARES
   ================================ */
.contenedor-avatares {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ================================ 
   🌟 AVATARES CON ACTUALIZACIÓN EN TIEMPO REAL
   ================================ */










@keyframes pulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
  100% { transform: translateX(-50%) scale(1); }
}



/* ================================ 
   🌟 BOTÓN INSERTAR
   ================================ */
.btn-insertar-tarea {
  background: var(--accent-color);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn-insertar-tarea:hover {
  background: var(--accent-color);
}

/* ================================ 
   🌟 BOTÓN ELIMINAR (ICONO)
   ================================ */
.btn-eliminar-tarea {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  color: #ff0044;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}

.btn-eliminar-tarea:hover {
  color: #cc0037;
}

/* ================================ 
   🌟 BOTÓN ACTUALIZAR
   ================================ */
.btn-actualizar-tarea {
  background: var(--accent-color);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.2s;
}

.btn-actualizar-tarea:hover {
  background-color: #333;
}

/* ================================ 
   🌟 ELEMENTOS DE TEXTO
   ================================ */
.tarea-nombre, .tarea-fecha {
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

/* ================================ 
   🌟 CONTENEDOR DE AVATARES TAREAS
   ================================ */
.contenedor-avatares-tareas {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  flex-wrap: wrap;         /* permite que se envuelvan si hay muchos */
  gap: 10px;               /* separación entre avatares */
  margin-top: 10px;
  margin-bottom: 10px;
}
