<?xml version="1.0" encoding="utf-8"?>
<!-- Modern streaming-style play/pause button - Accent highlight -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Focused state - White pill with slight scale feel -->
    <item android:state_focused="true">
        <shape android:shape="rectangle">
            <solid android:color="#FFFFFF" />
            <corners android:radius="100dp" />
        </shape>
    </item>

    <!-- Pressed state -->
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="#E6FFFFFF" />
            <corners android:radius="100dp" />
        </shape>
    </item>

    <!-- Default/Idle state - Subtle highlight to stand out -->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="#1AFFFFFF" />
            <corners android:radius="100dp" />
        </shape>
    </item>

</selector>
