/* 点歌电台 - 全局样式微调（基于 Vuetify 3 / Material Design 3） */
html {
  overflow-y: auto;
}

.v-main {
  padding-bottom: 64px;
}

/* 正在播放卡片柔和高亮 */
.v-card--variant-tonal.v-theme--light {
  --v-theme-overlay-multiplier: 0.08;
}

/* 空状态与列表间距 */
.v-empty-state {
  padding: 16px;
}

/* 试听音频隐藏 */
audio {
  display: none;
}

/* 配置编辑器（Ace Editor） */
.config-editor {
  height: 320px;
  border: 1px solid rgba(128, 128, 128, 0.35);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.v-theme--dark .config-editor {
  background: #1d1f27;
}
.config-editor .ace_editor {
  font-family: Consolas, 'Courier New', 'Noto Sans Mono CJK SC', monospace;
  font-size: 13px;
}
