/* Screen-specific styles for Delivery_Zone_Management_Screen */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
            color: black;
        }
        
        .material-symbols-rounded {
            font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
            vertical-align: middle;
        }
        
        .map-container {
            background-image: url('https://api.mapbox.com/styles/v1/mapbox/light-v10/static/101.6932,3.1569,10.5,0/375x200?access_token=pk.dummy');
            background-size: cover;
            background-position: center;
            height: 200px;
            border-radius: 0.75rem;
        }
        
        .zone-card {
            transition: all 0.2s ease;
        }
        
        .zone-card:active {
            transform: scale(0.98);
        }
