File size: 3,840 Bytes
9a4dd6d
 
 
 
218f305
 
9a4dd6d
 
218f305
 
9a4dd6d
 
 
218f305
 
9a4dd6d
 
218f305
 
bdb03b6
 
9a4dd6d
 
bdb03b6
 
9a4dd6d
 
bdb03b6
 
 
9a4dd6d
 
bdb03b6
 
 
9a4dd6d
 
bdb03b6
 
 
9a4dd6d
 
bdb03b6
 
 
9a4dd6d
 
bdb03b6
 
9a4dd6d
 
bdb03b6
050a659
 
bdb03b6
050a659
 
 
bdb03b6
050a659
9a4dd6d
 
bdb03b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a4dd6d
050a659
bdb03b6
 
 
3379a82
 
bdb03b6
 
 
 
 
 
 
 
3379a82
9a4dd6d
050a659
bdb03b6
 
 
3379a82
 
bdb03b6
 
 
9a4dd6d
 
bdb03b6
 
 
 
 
3379a82
 
bdb03b6
 
050a659
 
bdb03b6
 
 
 
 
 
 
 
3379a82
 
bdb03b6
 
 
3379a82
 
bdb03b6
 
3379a82
 
bdb03b6
 
3379a82
 
bdb03b6
 
 
3379a82
 
bdb03b6
 
 
 
 
 
 
 
 
 
3379a82
 
bdb03b6
 
3379a82
 
bdb03b6
 
 
3379a82
 
bdb03b6
 
3379a82
050a659
 
bdb03b6
050a659
9a4dd6d
 
bdb03b6
050a659
bdb03b6
9a4dd6d
 
bdb03b6
050a659
 
 
 
bdb03b6
050a659
bdb03b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a4dd6d
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Select styling enhancements */
select {
    background-image: none !important;
}

/* Focus ring animation */
.focus-ring-animate {
    animation: focusPulse 0.3s ease-out;
}

@keyframes focusPulse {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    100% { box-shadow: 0 0 0 4px rgba(14, 165, 233, 0); }
}

/* Modal animations */
.modal-enter {
    animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-exit {
    animation: modalOut 0.2s ease-out forwards;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

/* Gradient text animation */
.gradient-text-animate {
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Button hover glow */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* Tag animation */
.tag-pop {
    animation: tagPop 0.3s ease-out;
}

@keyframes tagPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Smooth transitions */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.7);
}

/* Custom select dropdown styling */
select option {
    padding: 12px;
    font-size: 14px;
}
/* Dropdown menu animations */
#dropdownMenu {
    transform-origin: top;
}

/* Info button in dropdown */
.info-btn {
    transition: all 0.2s ease;
}

.info-btn:hover {
    transform: scale(1.1);
}

.info-btn:active {
    transform: scale(0.95);
}

/* Dropdown item hover effects */
.dropdown-item {
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0ea5e9, #d946ef);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* Dropdown arrow rotation */
#dropdownArrow {
    transition: transform 0.2s ease;
}

#dropdownArrow.rotate-180 {
    transform: rotate(180deg);
}

/* Custom scrollbar for dropdown */
#dropdownMenu::-webkit-scrollbar {
    width: 6px;
}

#dropdownMenu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0 8px 8px 0;
}

#dropdownMenu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.dark #dropdownMenu::-webkit-scrollbar-thumb {
    background: #475569;
}

/* Dropdown trigger focus state */
#dropdownTrigger:focus,
#dropdownTrigger.ring-2 {
    border-color: transparent;
}
/* Floating label show */
.show-label {
    opacity: 1 !important;
}

/* Selected display animation */
.selected-show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}