<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!--
        Material 3 theme with edge-to-edge display support
        Base template for blank layout
        For API 24-28 (without enforceContrast attributes which require API 29+)
    -->
    <style name="Theme.App" parent="android:Theme.Material3.DayNight.NoActionBar">
        <!-- Edge-to-edge window configuration -->
        <item name="android:navigationBarColor">@android:color/transparent</item>
        <item name="android:statusBarColor">@android:color/transparent</item>

        <!-- Window flags for edge-to-edge -->
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
        <item name="android:windowTranslucentStatus">false</item>
        <item name="android:windowTranslucentNavigation">false</item>
    </style>
</resources>
