/* Screen-specific styles for Farm_Supplier_Direct_View_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;
        }
        
        .story-cover {
            height: 200px;
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 0.75rem;
        }
        
        .story-cover-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            color: white;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 100px);
            gap: 0.5rem;
        }
        
        .image-gallery-main {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .map-container {
            border-radius: 0.75rem;
            height: 180px;
            background-image: url('https://api.mapbox.com/styles/v1/mapbox/streets-v11/static/101.9758,5.2342,9,0/375x180?access_token=pk.dummy');
            background-size: cover;
            background-position: center;
        }
        
        .ingredient-card {
            transition: transform 0.2s ease;
        }
        
        .ingredient-card:active {
            transform: scale(0.98);
        }
