File size: 3,066 Bytes
e4fd6e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* ── Buttons ───────────────────────────────────────────────── */
.btn,
button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.btn:hover,
button:hover {
  border-color: var(--accent);
  background: var(--surface);
}
.btn-sm {
  padding: 5px 12px;
  font-size: 0.82rem;
}
.btn-ghost {
  background: transparent;
}
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Table ─────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 940px;
}
th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
tr.row-positive {
  background: rgba(251, 113, 133, 0.04);
}
a {
  color: var(--accent);
  transition: color 0.15s;
}
a:hover {
  color: #9ec5ff;
}

.link-icon {
  display: inline-flex;
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.badge-high {
  border-color: #3b82f6;
  color: #93bbfd;
}
.badge-medium {
  border-color: #f59e0b;
  color: #fcd34d;
}
.badge-low {
  border-color: #6b7280;
  color: #9ca3af;
}
.badge-urgent {
  border-color: #ef4444;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
}
.badge-standard {
  border-color: #22c55e;
  color: #86efac;
}

/* ── Dots ──────────────────────────────────────────────────── */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot-green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.dot-red {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

/* ── Utility ───────────────────────────────────────────────── */
.mono {
  font-family: "Consolas", "SF Mono", "Fira Code", monospace;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.85rem;
}