/* Minimal UI */
#spotify-editor-root { min-height: 560px; }
.spe-btn { padding: 8px 12px; border-radius: 9999px; border: 1px solid #e5e7eb; background: #111; color: #fff; cursor: pointer; }
.spe-btn:disabled { opacity: .6; cursor:not-allowed; }
.spe-card { background: #fff; border-radius: 16px; box-shadow: 0 1px 6px rgba(0,0,0,.06); padding: 12px; }
.spe-list { list-style: none; margin: 0; padding: 0; }
.spe-item { display:flex; align-items:center; gap:12px; padding:8px; border-bottom:1px solid #f1f5f9; cursor: move; }
.spe-item:hover { background:#f9fafb; }
.spe-badge { font-size: 12px; color: #64748b; }
.spe-header { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:8px; }
.spe-grid { display:grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 1024px) { .spe-grid { grid-template-columns: 1fr 2fr; } }
.spe-error { position: fixed; right: 16px; bottom: 16px; background: #fef2f2; color:#991b1b; border:1px solid #fecaca; padding:12px; border-radius:12px; max-width: 360px; }
input[type="number"], input[type="text"] { padding: 6px 8px; border:1px solid #e5e7eb; border-radius:10px; }
label { user-select:none; }
