body {
			font-size: 15px;
			color: var(--color3);
			padding: 0;
			margin: 0;
		}
		table {
			margin: auto;
			font-size: 14px;
		}

		h1 {
			margin: 25px auto 0;
			text-align: center;
			text-transform: uppercase;
			font-size: 20px;
		}

		.centrado{
			text-align: center;
		}


		table td {
			transition: all .5s;
		}
		
		/* Table */
		.tabla_datos {
			border-collapse: collapse;
			font-size: 14px;
		}

		.tabla_datos th, 
		.tabla_datos td {
			border: 1px solid #e1edff;
			padding: 7px 17px;
		}
		.tabla_datos caption {
			margin: 7px;
		}

		/* Table Header */
		#titulo {
			background-color: var(--color3);
			color: #FFFFFF;
			border-color: #3c5c5b !important;
			text-transform: uppercase;
		}

		/* Table Body */
		.tabla_datos tbody td {
			color: #353535;
			text-align: center;
		}
		.tabla_datos tbody td:first-child,
		.tabla_datos tbody td:nth-child(4),
		.tabla_datos tbody td:last-child {
			text-align: center;
		}

		.tabla_datos tbody tr:nth-child(odd) td {
			background-color: rgba(11, 67, 122, 0.1);
		}
		.tabla_datos tbody tr:hover td {
			background-color: #ffffa2;
			border-color: #ffff0f;
		}

		/* Table Footer */
		.tabla_datos tfoot th {
			background-color: #e5f5ff;
			text-align: center;
		}
		.tabla_datos tfoot th:first-child {
			text-align: center;
		}
		.tabla_datos tbody td:empty
		{
			background-color: #ffcccc;
		}





		@media only screen and (max-width: 660px) {
			
			#titulo{
				font-size: 10px;
			}

		  }

.clickable-row{
	cursor: pointer;
}
.clickable-row:hover{
	background-color: rgba(128, 128, 128, 0.055);
}