File size: 1,228 Bytes
99be3c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
```css
/* Tailwind base */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles */
.sidebar {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.active-nav-item {
  background: rgba(124, 58, 237, 0.1);
  border-left: 4px solid #7c3aed;
}
.app-card {
  transition: all 0.2s ease;
}
.app-card:hover {
  transform: translateY(-3px);
}
.login-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.file-upload {
  border: 2px dashed #d1d5db;
  transition: all 0.3s;
}
.file-upload:hover {
  border-color: #7c3aed;
  background-color: rgba(124, 58, 237, 0.05);
}
.table-row:hover {
  background-color: rgba(124, 58, 237, 0.05);
}
.user-status-active {
  background-color: #10b9811a;
  color: #10b981;
}
.user-status-inactive {
  background-color: #ef44441a;
  color: #ef4444;
}
.user-status-pending {
  background-color: #f59e0b1a;
  color: #f59e0b;
}
```