/* Shop Qlvl Calculator styles */

.qlvl-form,
.qlvl-results {
  display: grid;
  gap: var(--space-sm);
}

.qlvl-form {
  gap: var(--space-md);
}

.qlvl-level-field {
  width: min(100%, 20rem);
}

.qlvl-results .result-heading:not(:first-child) {
  margin-top: var(--space-sm);
}

.qlvl-output {
  color: var(--color-magic);
  font-family: Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.86rem;
  line-height: 1.35;
  margin: 0;
  overflow-x: auto;
  white-space: pre;
}

.qlvl-output-wrap {
  overflow-wrap: anywhere;
  overflow-x: visible;
  white-space: pre-wrap;
}

@media (min-width: 761px) and (max-width: 980px) {
  .qlvl-output {
    font-size: 0.8rem;
  }
}

@media (min-width: 561px) and (max-width: 760px) {
  .qlvl-output {
    font-size: 0.76rem;
  }
}

@media (max-width: 560px) {
  .qlvl-level-field {
    width: 100%;
  }

  .qlvl-output {
    font-size: 0.78rem;
  }
}
