File size: 733 Bytes
ff37766
4f8e46c
ff37766
 
 
 
4f8e46c
 
ff37766
 
 
4f8e46c
 
ff37766
 
4f8e46c
 
ff37766
 
 
4f8e46c
 
ff37766
 
4f8e46c
2770657
 
 
 
 
ff37766
2770657
ff37766
 
 
 
 
 
 
 
 
 
 
 
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
/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #5a1a9a;
}
/* Waveform styles */
.wavesurfer-container {
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Animation for processing state and comparison */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.processing {
    animation: pulse 1.5s infinite;
}