File size: 935 Bytes
7c2c194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.map-overlay-recommendations {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 420px;
  width: calc(30vw + 120px);
  background: rgba(27, 2, 2, 0.96);
  color: #0f172a;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.2);
  z-index: 1200;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.map-overlay-recommendations .overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-overlay-recommendations .overlay-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.map-overlay-recommendations .recommendation-content {
  max-height: 48vh;
  overflow: auto;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Small screens: make overlay slightly larger and centered */
@media (max-width: 768px) {
  .map-overlay-recommendations {
    left: 10px;
    right: 10px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}