File size: 824 Bytes
da8ac0b
 
 
d884c8a
da8ac0b
 
 
 
d884c8a
 
da8ac0b
 
 
d884c8a
 
da8ac0b
 
 
 
 
 
 
d884c8a
86acef8
 
 
 
 
d884c8a
da8ac0b
 
 
 
 
d884c8a
 
da8ac0b
 
 
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
/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.vanta-container {
    position: relative;
    z-index: 0;
}

.vanta-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* Tracking status colors */
.bg-green-100 { background-color: #d1fae5; }
.text-green-800 { color: #065f46; }
.bg-yellow-100 { background-color: #fef3c7; }
.text-yellow-800 { color: #92400e; }

/* Animation for tracking dots */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}