/**
 * Leaflet map customizations for Clickdrive
 *
 * Includes:
 * - Custom marker styles
 * - Collapsible attribution (shows info icon, expands on hover)
 */

/* Custom Clickdrive marker icon */
.clickdrive-marker {
    background: transparent;
    border: none;
}

/* Collapsible attribution control */
.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 2px 8px !important;
    font-size: 11px !important;
    max-width: 26px;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.3s ease;
    border-radius: 4px;
}

.leaflet-control-attribution::before {
    content: "\24D8"; /* ⓘ info icon */
    margin-right: 10px;
    font-size: 14px;
}

.leaflet-control-attribution:hover {
    max-width: 400px;
}

.leaflet-control-attribution a {
    color: #0078a8 !important;
}

/* Popup styling to match Clickdrive brand */
.leaflet-popup-content a {
    color: #0058FF;
    font-weight: 500;
}

.leaflet-popup-content a:hover {
    text-decoration: underline;
}
