.scope-wrapper {
    position: relative;
    width: 283px;
    height: 140px;
    background: linear-gradient(-45deg, var(--gris-oscuro) 0%, var(--gris-medio) 100%);
    border-radius: var(--radius-key-small);
    box-shadow:
    inset 0 1.5px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1.5px 0.5px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    corner-shape: squircle;
    font-family: var(--font-mono);
    color: var(--blanco-roto);
    font-size: 16px;
    line-height: 16px;
}

.scope {
    width: 100%;
    height: 100%;
    background: var(--negro);
    border-radius: var(--radius-key-small);
    corner-shape: squircle;
    display: flex;
    flex-direction: column;
    padding: 8px;
    box-sizing: border-box;
}

.scope-header,
.scope-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.scope-canvas {
  flex: 1;
  width: 100%;
  height: 94px;
  display: block;
  flex-shrink: 0;
}

.scope-header,
.scope-footer,
.scope-canvas {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.scope--on .scope-header,
.scope--on .scope-footer,
.scope--on .scope-canvas {
    opacity: 1;
}

.scope-bpm,
.scope-scale,
.scope-octave {
  transition: opacity 0.1s ease-in-out;
}
