html, body {
  /* max-width: fit-content; /* Limita el ancho al tamaño del contenido */
  /* height: 100%;		/* de gesto6 */
  /* overflow: hidden;	/* de gesto6 */
  /* background-color: white; */
  font-family: sans-serif;
  margin: 0;
  /* padding: 10px; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* height: 100vh; */
}


#zonaGesto {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  pointer-events: none; /* No bloquea clics */
}

#areaGestos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto; /* Esta capa sí recibe toques */
}
	
	.pantas {
	  min-height: calc(93vh - 60px);
	  padding-bottom: 0;
	  /* width: 100vw; */
	  /* position: absolute; */
	  /* top: 0; */
	  /* left: 0; */
	}

	/* .footer { */
	  /* height: 50px; */
	/* } */

    /* .jugador1 { */
      /* background-color: red; */
    /* } */

    /* .jugador2 { */
      /* background-color: blue; */
    /* } */

	.hide {
	  display: none !important;
	}

/* panta1 */
h2 {
  margin-top: 0;
  font-size: 1.4em;
}
label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.95em;
}
/* input[type="text"], select { */
  /* width: 100%; */
  /* padding: 6px; */
  /* font-size: 1em; */
  /* margin-bottom: 8px; */
/* } */
.color-picker {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.color-button {
  width: 30px;
  height: 30px;
  /* border: 2px solid #999; */
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}
.color-button.selected {
  transform: scale(1.4);
  border: 3px solid black;
  z-index: 1;
}
/* button[type="submit"] { */
  /* /* width: 100%; */ */
  /* padding: 8px; */
  /* font-size: 1em; */
  /* background-color: #ddd; */
  /* border: none; */
  /* border-radius: 4px; */
  /* margin-top: 10px; */
  /* font-weight: bold; */
  /* cursor: pointer; */
/* } */
/* .ceros { */
	/* font-family: 'Courier New', Courier, monospace; */
/* } */


/* panta2 */
.opciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.opcion {
  border: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.opcion img {
  width: 100%;
  height: auto;
  display: block;
}

.opcion.seleccionada {
  border-color: #007BFF;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.marginTop {
	margin-top: 14px;
}

.boton {
  /* margin-top: 30px; */
  padding: 10px 20px;
  font-size: 18px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 20;
  position: relative;
}
/* panta3 */
	.espacio50 {
	  width: 20%;
	}
	.espacio150 {
	  white-space: nowrap;
	  height: 3% !important;
	}
	.espacio150 img {
	  display: inline-block;
	}
	/* .espacio5 { */
	  /* width: 5%; */
	/* } */
	/* .cuadrado { */
	  /* width: 30px; */
	  /* height: 30px; */
	/* } */
    .flecha {
	  /* font-weight: 950; */
      width: 30px;
      height: 30px;
      /* background-color: lightblue; */
      /* display: flex; */
      justify-content: center;
      align-items: center;
      cursor: pointer;
      user-select: none;
      /* font-size: 20px; */
    }

    .tabla {
      border-collapse: collapse;
    }

    .celda {
      border: 1px solid gray;
      padding: 0;
      margin: 0;
	  /* font-size: 1px; */
    }

	/* td.celdaHW {overflow: visible;} */

    .borde {
      background-color: gray;
    }

    .color-box {
      display: inline-block;
      width: 17px;
      height: 22px;
      /* margin-right: 5px; */
	  /* position: relative; */
    }

    .color-boxCross {
      display: inline-block;
      width: 17px;
      height: 17px;
      /* margin-right: 5px; */
	  /* position: relative; */
    }
/* .color-box::after { */
  /* content: ""; */
  /* position: absolute; */
  /* top: 50%; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 2px; grosor de la línea */
  /* background: currentColor; usa el mismo color del texto */
  /* transform: translateY(-50%); */
/* } */
	/* .crossed { */
		/* text-align: center; */
		/* width: 12px; */
	/* } */
	
    /* #espera { */
	  /* width: 100vw; */
	  /* height: 100vh; */
      /* position: fixed; */
      /* top: 50%; */
      /* left: 50%; */
      /* transform: translate(-50%, -50%); */
      /* display: none; */
      /* z-index: 1000; */
    /* } */

#espera {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

#espera img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


    body.loading {
      overflow: hidden;
    }
