/* Livewire Mapcn CSS */

/* Remove focus outline from popups (prevents black ring on init) */
.maplibregl-popup:focus,
.maplibregl-popup-content:focus {
    outline: none;
}

.maplibregl-popup-content {
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.maplibregl-popup-close-button {
    padding: 0.25rem;
    font-size: 1.25rem;
    line-height: 1;
    color: #6b7280;
    background-color: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.maplibregl-popup-close-button:hover {
    color: #111827;
    background-color: #f3f4f6;
}

.dark .maplibregl-popup-content {
    background-color: #1f2937;
    color: #f9fafb;
}

.dark .maplibregl-popup-close-button {
    color: #9ca3af;
}

.dark .maplibregl-popup-close-button:hover {
    color: #f9fafb;
    background-color: #374151;
}
