.Medidores
{
	display: flex;
	text-align: center;
	flex-direction: row;
	height: 95%;
	min-width: 110px;
}

.Medidores > div
{
	width:25%;
	margin:5px;
	display: grid;
	gap: 10px;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.Minuto
{
	border:2px solid blue;
}

.QuinceM
{
	border:2px solid red;
}

.TreintaM
{
	border:2px solid green;
}

.Hora
{
	border:2px solid yellow;
	color: black;
}

.Dia
{
	border:2px solid purple;
}

.vela
{
	position: relative;
	width: 30px;
	height: 200px; /* rango total high-low */
	display: flex;
	justify-content: center;
}

/* Mecha (línea vertical) */
.mecha
{
	position: absolute;
	width: 2px;
	background: white;
	top: 7px;
	height: calc(100% - 12px);
}

/* Cuerpo */
.cuerpo
{
	border:1px solid;
	position: absolute;
	width: 100%;
	border-radius: 2px;
	top: 60px;
	height: 80px;
	align-items: center;
	display: grid;
	font-size:12px;
}

.cuerpo.alcista
{
	background: green;
}

.cuerpo.bajista
{
	background: red;
}

#gridGraficos {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    grid-template-rows: repeat(2, 1fr);    /* 2 filas */
    gap: 10px;

    width: 100%;
    height: 100vh; /* ocupa toda la pantalla */
    padding: 10px;
    box-sizing: border-box;
}

/* Cada panel */
#gridGraficos > div {
	width: 100%;
	height: 100% !important;
	position: relative;
	background: #111; /* opcional */
	border-radius: 8px;
	overflow: auto;scroll-margin: 10px;
}

#gridGraficos > div > label
{
	position: sticky;
	top: 22px;
	left: 21px;
	color: white;
}
