File size: 1,180 Bytes
b1a9ea7
 
38df459
b1a9ea7
 
 
 
 
38df459
 
b1a9ea7
 
 
 
 
 
 
 
 
 
 
 
 
 
38df459
 
b1a9ea7
 
 
 
 
38df459
 
b1a9ea7
 
 
 
 
 
 
38df459
 
b1a9ea7
 
 
 
38df459
b1a9ea7
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.quick-action-btn {
    @apply flex flex-col items-center justify-center p-4 rounded-lg bg-gray-100 hover:bg-gray-200 transition-colors duration-200 text-gray-700;
}

.quick-action-btn i {
    @apply w-6 h-6 mb-2;
}

.quick-action-btn span {
    @apply text-sm font-medium;
}
/* Task Form Styles */
.task-form {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

/* KPI Report Styles */
.kpi-container {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}