/* piano.css */

.piano-container {
  padding: 12px;
}

.piano-keys {
  position: relative;
  width: 600px;
  height: 180px;
  background: #222;
  border: 2px inset #808080;
  margin: 8px;
  user-select: none;
}

.piano-key {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.piano-key.white {
  width: 40px;
  height: 160px;
  background: #ffffff;
  border: 1px solid #999999;
  z-index: 1;
}

.piano-key.black {
  width: 28px;
  height: 100px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  z-index: 2;
}

.piano-key.white.active { background: #eeeeee; }
.piano-key.black.active { background: #222222; }

.piano-key .label {
  opacity: 0.6;
  padding-bottom: 4px;
  pointer-events: none;
}


