

/* ================= CONTENEDOR DE AVATARES ================= */
.contenedor-avatares-proyectos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ================= AVATAR DE PROYECTO ================= */




/* ================= BURBUJA DE CALIFICACIÓN ================= */
.avatarCalificacion {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;

}



/* ================= CONTENIDO DE CADA PROYECTO ================= */
.proyecto-tab-content {
  padding: 16px;
  border-radius: 8px;
  margin-top: 12px;
  background-color: rgba(34,34,34,0.9);
  text-align: left;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ================= ÍTEM DE PROYECTO ================= */
.proyecto-item {
  background: rgba(255,255,255,0.05);
  padding: 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================= NOMBRE DEL PROYECTO ================= */
.proyecto-nombre {
  font-weight: bold;
  color: #ffffff;
  font-size: 1rem;
}

/* ================= INPUT DE CALIFICACIÓN ================= */
.proyecto-item input[type="number"] {
  width: 90px;
  padding: 6px;
  border-radius: 4px;
  border: none;
  background: #666;
  color: white;
  font-weight: bold;
  text-align: center;
  transition: background 0.2s ease;
}

.proyecto-item input[type="number"]:focus {
  background: #888;
  outline: none;
}

/* ================= SIN PROYECTOS ================= */
.noProyectos {
  color: #bbb;
  padding: 10px;
  font-style: italic;
  text-align: center;
}




