/* Song Maker — a calm grown-up/big-kid page, same palette as the stage. */

body {
  overflow: auto;
}

.mk-editor {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 auto;
  max-width: 560px;
  padding: 1.2rem;
}

.mk-editor__back {
  color: var(--mk-ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.mk-editor__title {
  font-size: 1.8rem;
}

.mk-editor__intro,
.mk-editor__label,
.mk-editor__note {
  font-size: 0.95rem;
}

.mk-editor__input,
.mk-editor__lyrics {
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.55rem;
}

.mk-editor__input--tiny {
  width: 5rem;
}

.mk-editor__stages {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 0.3rem;
}

.mk-editor__row {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.mk-editor__btn {
  background: var(--mk-star);
  border: 0;
  border-radius: 999px;
  color: #2b1055;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
}

.mk-editor__subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.mk-editor__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
}

.mk-editor__item {
  align-items: center;
  background: rgba(255, 248, 240, 0.12);
  border-radius: 10px;
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
  padding: 0.5rem 0.8rem;
}

.mk-editor__delete {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
