<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Background shape with curved top left and top right corners -->
    <item android:id="@+id/background_shape">
        <shape android:shape="rectangle">
            <gradient
                android:angle="90"
                android:startColor="@color/white"
                android:endColor="@color/white" /> <!-- Set a slightly lighter color for shading -->
            <corners android:topLeftRadius="13dp"
                android:topRightRadius="13dp"
                android:bottomLeftRadius="13dp"
                android:bottomRightRadius="13dp" />
        </shape>
    </item>





    <!-- Place your BottomNavigationView above the background shape -->
    <item android:id="@android:id/background">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/transparent" />
        </shape>
    </item>

</layer-list>