/*****************************
   PUNTUACIONES EN EL LISTADO COMPLETO PARA USUARIOS LOGUEADOS
******************************/

/* cuadro superior con resumen puntuaciones */

.puntuacionestotal {
	background-color: #D6DBDF;
	border: 1px solid #CFD5DA;
	border-radius:8px;
	color: #17202A;
	font-family:sans-serif;
	font-size: 1rem;
	font-weight: bold;	
}

.usuario {
	padding-left: 10px;
	font-weight: normal;
}

.totalaprobado {
	color: #14984B;
	font-weight:bold;
	padding-left:10px;
}

.totalsuspenso {
	color: #b30000;
	font-weight: bold;
	padding-left: 10px;
}

#btnBorrarPuntos {
	background-color: #b30000;;
	color: #eeeeee;
	float: right;
	font-family:sans-serif;
	font-size: 0.9rem;
	font-style: italic;
	font-weight: normal;
	padding:1px 12px;

}

#btnBorrarPuntos:hover {
	background-color: #DC1038; 
}


/* Cuadros de puntuaciones junto a cada test */

.aprobado {
	background-color: #196F3D;
	border-radius:10px;
	color: white; 
	display: inline-block;
	font-family: sans-serif;
	font-size: 0.95rem;
	padding: 3px 7px;	
}

.suspenso {
	background-color: #b30000;
	border-radius:10px;
	color: white;
	display: inline-block;
	font-family: sans-serif;
	font-size: 0.95rem;
	padding: 3px 7px;	
}

.intentos, .totalmaximo, .totalmedia {
	font-weight: bold;
}






