File size: 3,934 Bytes
6a8bcc4
bd92a8f
 
6a8bcc4
 
bd92a8f
 
 
 
 
 
 
 
 
 
 
 
 
6a8bcc4
346541d
712623d
72695b3
bd92a8f
6a8bcc4
 
 
712623d
 
 
 
bd92a8f
6a8bcc4
bd92a8f
 
6a8bcc4
 
 
 
 
bd92a8f
 
 
6a8bcc4
 
 
bd92a8f
 
 
6a8bcc4
 
 
 
bd92a8f
 
6a8bcc4
 
 
bd92a8f
 
6a8bcc4
 
bd92a8f
 
 
 
6a8bcc4
 
bd92a8f
6a8bcc4
bd92a8f
 
 
6a8bcc4
 
 
bd92a8f
6a8bcc4
712623d
 
bd92a8f
 
 
 
712623d
bd92a8f
 
712623d
 
 
bd92a8f
 
346541d
 
712623d
 
 
 
 
 
 
bd92a8f
346541d
6a8bcc4
 
bd92a8f
6a8bcc4
bd92a8f
 
346541d
 
6a8bcc4
bd92a8f
 
346541d
6a8bcc4
 
bd92a8f
6a8bcc4
bd92a8f
346541d
6a8bcc4
 
bd92a8f
6a8bcc4
 
 
 
bd92a8f
6a8bcc4
 
 
bd92a8f
6a8bcc4
 
bd92a8f
 
 
 
712623d
 
 
 
 
 
6a8bcc4
 
bd92a8f
6a8bcc4
 
 
 
 
 
 
 
 
 
 
 
bd92a8f
6a8bcc4
 
 
 
 
 
 
bd92a8f
 
6a8bcc4
 
 
bd92a8f
6a8bcc4
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175

/* Modern Dark Styles for LifeTracker Pro */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-border: #2d2d2d;
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --primary-purple: #8b5cf6;
    --primary-red: #ef4444;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --hover-blue: #2563eb;
    --hover-green: #059669;
    --hover-purple: #7c3aed;
    --hover-red: #dc2626;
}
body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
}

/* Modern typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-primary);
}
/* Activity cards */
.bg-white {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.bg-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
}
/* Progress bars */
.w-full.bg-gray-200 {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
    height: 4px;
}

.bg-blue-500, .bg-green-500, .bg-purple-500, .bg-red-500 {
    border-radius: 4px;
    height: 4px;
}

.bg-blue-500 { background: var(--primary-blue); }
.bg-green-500 { background: var(--primary-green); }
.bg-purple-500 { background: var(--primary-purple); }
.bg-red-500 { background: var(--primary-red); }
/* Buttons */
button {
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

button:hover {
    transform: translateY(-1px);
}
/* Custom checkbox styles */
.workout-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--dark-card);
}

.workout-checkbox.checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.workout-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
/* Workout items */
.flex.items-center.p-3 {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.flex.items-center.p-3:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--primary-blue);
}
/* Progress stats */
.bg-gray-50 {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
}
/* Grid enhancements */
.grid {
    gap: 1rem;
}

/* Text enhancements */
.text-gray-800 {
    color: var(--text-primary) !important;
}

.text-gray-600 {
    color: var(--text-secondary) !important;
}

.text-blue-600 { color: var(--primary-blue) !important; }
.text-green-600 { color: var(--primary-green) !important; }
.text-purple-600 { color: var(--primary-purple) !important; }
.text-red-600 { color: var(--primary-red) !important; }
/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .grid {
        gap: 0.75rem;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d3d3d;
}