File size: 743 Bytes
1ad4eaa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body,
#root {
  height: 100%;
}

body {
  margin: 0;
}

.leaflet-container {
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #07130f;
}

.leaflet-popup-content-wrapper {
  background: rgba(10, 28, 20, 0.95);
  color: #e6fff3;
  border: 1px solid rgba(126, 245, 200, 0.3);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.leaflet-popup-tip {
  background: rgba(10, 28, 20, 0.95);
}

.leaflet-popup-close-button {
  color: #7ef5c8 !important;
}

.leaflet-tooltip {
  pointer-events: none !important;
}