File size: 655 Bytes
96f5be6
 
7cd5aee
96f5be6
 
 
 
 
 
7cd5aee
 
96f5be6
 
 
7cd5aee
 
96f5be6
 
 
7cd5aee
 
96f5be6
 
7cd5aee
 
96f5be6
 
 
 
 
7cd5aee
96f5be6
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
}

.prose {
    color: #334155;
    line-height: 1.6;
}

.prose ol {
    margin-top: 1em;
    margin-bottom: 1em;
}

.prose li {
    margin-bottom: 0.5em;
}

/* Animation for important notices */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.important-notice {
    animation: pulse 2s infinite;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}