File size: 1,972 Bytes
fb766c5
 
 
 
 
 
 
 
 
 
 
 
 
f5c86c4
fb766c5
 
 
f5c86c4
 
fb766c5
 
 
 
f5c86c4
 
fb766c5
 
 
f5c86c4
 
fb766c5
 
f5c86c4
 
fb766c5
 
 
f5c86c4
fb766c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f97316;
    --primary-light: #fb923c;
    --bg-dark: #1f2937;
    --bg-content: #111827;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #1f2937;
}

/* Orange theme overrides */
.sidebar-nav a.active {
    background-color: var(--primary) !important;
    color: white !important;
}

.kpi-card-detailed {
    background: white;
    border: 1px solid #e5e7eb;
}

.kpi-card-detailed:hover {
    border-color: var(--primary);
}

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

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

/* PDF Upload Section */
.pdf-upload-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.pdf-upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-viewer {
    width: 100%;
    height: 500px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Trend Chart */
.trend-chart-container {
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* 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;
}

/* Animation for cards */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}