File size: 1,501 Bytes
5262418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Custom styling for GeoJSON viewer */
body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #e8eef1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #008080;
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#map {
    width: 95%;
    height: 70vh;
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#stats {
    width: 95%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

#stats h3 {
    font-size: 1.6em;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

#stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

#stats .stat-item:last-child {
    border-bottom: none;
}

#stats .stat-label {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #555;
}

#stats .stat-label i {
    font-style: normal;
    color: #008080;
    margin-right: 8px;
}

.value {
    color: #008080;
    font-weight: bold;
    font-size: 1.1em;
}

footer {
    padding: 10px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}