.Tabla
{
	color: wheat;
	border-left: 1px solid white;
	border-bottom: 1px solid white;
	width: 100%;
}

.Tabla tr th, td
{
	text-align:center;
	padding: 5px;
	border-right: 1px solid whitesmoke;
	border-top: 1px solid whitesmoke;
	max-width: 150px;
}

UL
{
	margin:0px;
	padding:0px 25px 0px 0px;
	display: flex;
	flex-flow: column;
}

UL > LI
{
	padding: 1px;
}

/* Contenedor principal */
.GBotones {
	display: grid;
	gap: 10px;
	padding-bottom:25px;
	grid-template-columns: repeat(6, 1fr);
}

.GBotonesMulti {
	display: grid;
	gap: 10px;
	padding-bottom:25px;
	position: fixed;
	top: 52%;
	width: 50px;
}

.ParametosMulti {
	display: grid;
	gap: 10px;
	position: fixed;
	top: 5px;
	width: 300px;
	grid-template-columns: repeat(3, 1fr);
	left: calc(50% - 150px);
}

.ParametosMulti > div
{
	text-align: center;
}

.Informacion
{
	display: grid;
	gap: 10px;
	padding-bottom:25px;
	grid-template-columns: 70% 30%;
}		

/* Cada div ocupa espacio proporcional */
#GBotones > div {
	text-align: center;

}

/* Botones */
#GBotones button {
	width: 100%;
	padding: 12px 0;
	font-size: 16px;
	border: 5px solid whitesmoke;
	border-radius: 23px;
	background: #1e88e5;
	color: white;
	cursor: pointer;
	transition: background 0.2s ease;
}

#GBotones button:hover {
	background: #1565c0;
}