/* Единични позиции, изпратени еднократно от мобилното приложение.
   Отделен файл, а не resources/css/app.css, за да не зависи от vite build. */
#currentPointsPanel {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 290px;
    z-index: 1000;
}

#currentPointsPanel .card-header {
    font-size: 0.9em;
}

.current-points-list {
    max-height: 320px;
    overflow-y: auto;
}

.current-point-item {
    display: block;
    padding: 7px 10px;
    font-size: 0.85em;
    text-decoration: none;
    color: #333;
}

.current-point-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.current-point-item:hover {
    background-color: #eef0f8;
    color: #3f51b5;
}

/* Leaflet слага бял фон и рамка на всеки divIcon - махаме ги, за да се вижда само SVG-то. */
.current-point-marker {
    background: none;
    border: none;
}

.current-point-marker svg {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.current-point-popup td {
    font-size: 0.9em;
    padding: 1px 0;
}
