2026-02-02 20:34:35 +00:00
|
|
|
.mapWrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mapLoading {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
border-radius: var(--radius-md);
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
|
width: 2rem;
|
|
|
|
|
height: 2rem;
|
2026-02-04 10:05:31 +00:00
|
|
|
border: 3px solid rgba(224, 114, 86, 0.3);
|
2026-02-02 20:34:35 +00:00
|
|
|
border-radius: 50%;
|
2026-02-04 10:05:31 +00:00
|
|
|
border-top-color: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
animation: spin 0.8s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mapLoading p {
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|