body {
  margin: 0;
  padding: 15px;
  color: #a0a0a0;
  background-color: #FFFFFF;
  font-family: Menlo;
}

h1 {
  font-weight: 500;
  font-size: 20px;
  color: #7D00FF;
  justify-content: center;
  width: 100%;
}

.flex {
  display: flex;
}

.logo {
  width: 400px;
}

.header {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  display:none;
}

.control {
  min-width: 500px;
  width: 500px;
  margin-bottom: 0.5em;
  margin-right: 20px;
}

.spread {
  align-items: center;
  display: flex;
}
.spread > :first-child {
  margin-right: auto;
}
.spread > :last-child {
  margin-left: auto;
}

.button {
  color: white;
  padding: 9px 12px;
  cursor: pointer;
}
.button--start {
  color: rgba(0, 0, 0, 0.6);
  background-color: #3DFB60;
}
.button--stop {
  background-color: #FB3D3D;
}
.button--selected {
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.3);
}
.button--resize {
  background-color: #7D00FF;
  margin-right: 7px;
}

.orange {
  color: #ff823c;
}
.violet {
  color: #7D00FF;
}

.white {
  color: white;
}

.colors {
  display: flex;
  height: 30px;
}
.colors div {
  height: 30px;
  width: 30px;
  margin-left: 5px;
  cursor: pointer;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  height: 10px;
  background-color: #a0a0a0;
  margin-bottom: 2em;
  position: relative;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #a0a0a0;
  width: 35px;
  height: 20px;
  margin-top: 10px;
  border: 7px solid white;
  border-top: none;
}

.grid {
  margin: 0 auto;
  width: max-content;
  margin-top: 2em;
  margin-bottom: 2em;
}

.row {
  display: flex;
  margin-bottom: 5px;
}

.pixel {
  width: 35px;
  height: 35px;
  margin-right: 5px;
  background-color: #E6E6E6;
  transition: background 0.2s ease;
  box-shadow: none;
}
.pixel--error {
  box-shadow: inset 0 0 0 3px #9c0303;
}

.graph {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.bar {
  width: 35px;
  height: 105px;
  display: flex;
  flex-direction: column;
  margin-right: 5px;
  background-color: #DFDEDE;
}
.bar__fill {
  width: 100%;
  box-shadow: inset 0 2px 0 0 black;
}
.bar__fill--error {
  box-shadow: inset 0 3px 0 0 #9c0303, inset 0 -3px 0 0 #9c0303;
}

.colors__selected, .pixel__selected, .graph__selected {
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.5);
}
.colors__yellow, .colors__on, .pixel__yellow, .pixel__on, .graph__yellow, .graph__on {
  background-color: #FFC421;
}
.colors__blue, .pixel__blue, .graph__blue {
  background-color: #0B9AFF;
}
.colors__orange, .pixel__orange, .graph__orange {
  background-color: #FB823D;
}
.colors__red, .pixel__red, .graph__red {
  background-color: #FB3D3D;
}
.colors__purple, .pixel__purple, .graph__purple {
  background-color: #6D3DFB;
}
.colors__green, .pixel__green, .graph__green {
  background-color: #3DFB78;
}
.colors__violet, .pixel__violet, .graph__violet {
  background-color: #7D00FF;
}
.colors__pink, .pixel__pink, .graph__pink {
  background-color: #B81FFF;
}
/* Estilos para centrar y estilizar el valor de SECRET_ENV */
#secret-container {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  margin-top: 20px;
  padding: 10px; /* Espaciado interno */
  border: 2px solid black; /* Borde alrededor del contenedor */
  border-radius: 5px; /* Bordes redondeados */
  background-color: #f0f0f0; /* Fondo ligero para destacar */
}

#secret-value {
  margin-right: 10px;
  color: black; /* Cambia el color del texto a negro */
  transition: color 0.3s ease;
  font-size: 18px; /* Aumenta el tamaño de la fuente */
}

#lock-icon {
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 18px; /* Aumenta el tamaño del ícono */
}

#lock-icon:hover {
  color: gray;
}
.bold {
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */
