File size: 1,192 Bytes
083e043
 
39dfd02
083e043
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39dfd02
 
083e043
 
39dfd02
 
083e043
 
 
39dfd02
 
083e043
 
39dfd02
12721c7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39dfd02
083e043
 
 
 
39dfd02
083e043
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation for buttons */
.button-scale {
    transition: transform 0.2s ease;
}

.button-scale:hover {
    transform: scale(1.02);
}
/* Compatibility warning styles */
.compatibility-warning {
    background: #ffecb3;
    border-bottom: 1px solid #ffc107;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
}

.warning-content h3 {
    margin: 0 0 0.5rem 0;
    color: #ff6f00;
}

.warning-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: inline-block;
    text-align: left;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    animation: fadeIn 0.3s ease-in;
}