File size: 2,550 Bytes
ed571a1
25ace4b
 
 
 
 
 
 
 
ed571a1
 
25ace4b
ed571a1
 
25ace4b
ed571a1
 
25ace4b
 
 
 
 
ed571a1
 
25ace4b
 
 
 
ed571a1
 
25ace4b
ed571a1
25ace4b
ed571a1
25ace4b
 
 
ed571a1
 
25ace4b
 
 
 
ed571a1
 
25ace4b
ed571a1
 
 
25ace4b
 
 
ed571a1
 
25ace4b
 
 
 
 
 
 
 
ed571a1
 
25ace4b
ed571a1
 
25ace4b
 
 
ed571a1
 
25ace4b
 
ed571a1
 
25ace4b
 
ed571a1
 
25ace4b
ed571a1
25ace4b
ed571a1
 
 
 
 
25ace4b
ed571a1
25ace4b
 
 
ed571a1
 
 
25ace4b
ed571a1
25ace4b
 
ed571a1
 
25ace4b
 
 
ed571a1
 
25ace4b
 
ed571a1
25ace4b
 
ed571a1
 
25ace4b
 
 
ed571a1
 
25ace4b
 
 
 
ed571a1
 
25ace4b
 
 
 
 
 
ed571a1
 
25ace4b
 
ed571a1
 
25ace4b
 
ed571a1
 
 
25ace4b
ed571a1
 
 
 
25ace4b
 
 
 
 
 
 
 
 
ed571a1
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
}

header h1 i {
    margin-right: 10px;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn i {
    font-size: 14px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.table-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    position: sticky;
    top: 0;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    th, td {
        padding: 8px 10px;
    }
}