wanshenmean
2026-03-13 d216edd0e9931d71664f33e625cff6d8131a0fad
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
html {
  position: relative;
  min-height: 100%;
}
 
body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
}
 
/* Status Badge Colors */
.status-stopped {
  background-color: #6c757d;
}
 
.status-starting {
  background-color: #0dcaf0;
}
 
.status-running {
  background-color: #198754;
}
 
.status-stopping {
  background-color: #ffc107;
  color: #000;
}
 
.status-error {
  background-color: #dc3545;
}
 
/* Instance Card Styles */
.instance-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid transparent;
}
 
.instance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
 
.instance-card.status-running {
  border-left-color: #198754;
}
 
.instance-card.status-stopped {
  border-left-color: #6c757d;
}
 
.instance-card.status-error {
  border-left-color: #dc3545;
}
 
.instance-card.status-starting,
.instance-card.status-stopping {
  border-left-color: #ffc107;
}
 
/* Instance Info Section */
.instance-info-label {
  font-weight: 600;
  color: #495057;
}
 
.instance-info-value {
  color: #212529;
}
 
/* Action Buttons */
.action-buttons .btn {
  min-width: 80px;
}
 
/* Loading Spinner */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 
/* Memory Region Table */
.memory-table th {
  background-color: #e9ecef;
  font-weight: 600;
}
 
/* Client Table */
.client-table {
  font-size: 0.9rem;
}
 
/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
 
/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}
 
.empty-state i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}
 
/* Form Styles */
.form-label.required::after {
  content: " *";
  color: #dc3545;
}
 
/* Spinning Icon Animation */
.spin-icon {
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}