﻿/* Custom Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #0a0d14;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1f293d;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Custom Leaflet Map Dark Styling */
.leaflet-container {
    background: #07090e !important;
    font-family: 'Inter', sans-serif !important;
}

/* Dark mode tile inversion & hue shifting for Leaflet tiles */
.dark-tiles .leaflet-tile {
    filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7) !important;
}

.leaflet-popup-content-wrapper {
    background: #121824 !important;
    color: #f8fafc !important;
    border: 1px solid #1f293d !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5) !important;
    padding: 4px !important;
}

.leaflet-popup-tip {
    background: #121824 !important;
    border: 1px solid #1f293d !important;
}

/* Custom Marker Styling */
.custom-pin-property {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border: 2px solid #ffffff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
}

.custom-pin-medical {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 2px solid #ffffff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

/* Glow effects */
.glow-card {
    transition: all 0.3s ease;
}
.glow-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 0 20px -5px rgba(79, 70, 229, 0.3);
}
