        .custom-popup .leaflet-popup-content-wrapper {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 2px solid #007acc;
            max-width: 450px !important;
        }
        .custom-popup .leaflet-popup-tip {
            background: #007acc;
        }
        .custom-div-icon:hover {
            transform: scale(1.1);
        }
        .custom-popup .leaflet-popup-content {
            margin: 15px 18px 13px 18px;
            line-height: 1.4;
        }
        .custom-popup a:hover {
            opacity: 0.8;
            transform: translateY(-1px);
            transition: all 0.2s;
        }
        .custom-popup img[title]:hover {
            border-color: #007acc !important;
            transition: border-color 0.3s;
        }
        
        /* Map container styling */
        .map-container {
            margin: 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .map-title {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: bold;
        }
        
        .map-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .map-div {
            height: 75vh;
            width: 67%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 0 auto;
            min-height: 500px;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .map-div {
                width: 95%;
                height: 60vh;
            }
        }