:root {
    --bg: #ffffff;
    --text: #000000;
}
body.dark {
    --bg: #121212;
    --text: #f5f5f5;
}
body {
    background-color: var(--bg);
    color: var(--text);
}
#map { height: 70vh; }
.popup-content { font-size: 0.95rem; line-height: 1.4; }
.popup-content strong { font-size: 1.1rem; }
.list-group-item:hover { background-color: #f8f9fa; cursor: pointer; }
.leaflet-marker-hover {
    transform: scale(1.25);
    transition: transform 0.2s ease-in-out;
    z-index: 999 !important;
}
#loader {
    text-align: center;
    margin-bottom: 1rem;
}
#toggle-dark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1050;
}
#toggle-dark i {
    font-size: 1.4rem;
}