File size: 711 Bytes
44a2550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.score-editor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.score-editor.loading {
  text-align: center;
  padding: 4rem;
  font-size: 1.2rem;
  color: #666;
}

.editor-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.editor-toolbar h2 {
  margin: 0;
}

.toolbar-actions {
  display: flex;
  gap: 0.5rem;
}

.editor-instructions {
  margin-top: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.editor-instructions h3 {
  margin-top: 0;
}

.editor-instructions ul {
  margin: 0;
  padding-left: 1.5rem;
}

.editor-instructions li {
  margin: 0.5rem 0;
}