#exercise {
  text-align: initial !important;

  max-width: 1300px;
  min-height: 600px;
}

#playGround {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#instructions {
  background-color: white;
  border-radius: 3px;
  margin: 10px;
}

#instructions-content {
  margin: 15px;
}

.workspace {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;
}

#blockly-workspace {
  width: 600px;
  min-height: 500px;
  z-index: 0;

  order: 2;
}

#control-panel {
  order: 3;
  width: 100%;
}

/* 1349 px w/o scrollbar */
@media screen and (max-width: 1364px) {
  #control-panel {
    order: 1;
  }
}

.tlacitko[hidden] {
  display: none;
}

.tlacitko.disabled {
  pointer-events: none;
}

#game {
  display: flex;
}

#game.correct {
  box-shadow: 0 0 0 3px var(--green);
  animation: var(--animation-blink);
  animation-name: blink;
}

.exerciseFooter {
  text-align: center;
}

/* ADMIN CONSOLE */
#admin-console {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 0;
  gap: 10px;
}

#admin-console textarea {
  font-family: monospace;
}

#plan-editor {
  resize: none;
  letter-spacing: 0.3em;
  line-height: 1em;

  width: 15em;
}

#blocks-editor {
  width: 15em;
  height: 15em;
}

.control-group {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: stretch;

  gap: 10px;
  margin: 0;
}

#admin-console table{
  margin: 0;
}
