<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2025 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <!-- Layer 0: Background Fill (Hovered/Pressed states) -->
  <item>
    <selector>
      <item android:state_pressed="true">
        <shape android:shape="oval">
          <solid android:color="@color/color_on_surface_with_alpha_12" />
        </shape>
      </item>
      <item android:state_hovered="true">
        <shape android:shape="oval">
          <solid android:color="@color/color_on_surface_with_alpha_8" />
        </shape>
      </item>
      <item android:drawable="@android:color/transparent" />
    </selector>
  </item>

  <!-- Layer 1: Focus Ring (Drawn on top if focused) -->
  <item>
    <selector>
      <item android:state_focused="true">
        <shape android:shape="oval">
          <solid android:color="@android:color/transparent" />
          <corners android:radius="@dimen/focused_list_item_background_radius" />
          <stroke
            android:color="@macro/default_control_color_active"
            android:width="@dimen/focused_outline_stroke_width" />
        </shape>
      </item>
      <item android:drawable="@android:color/transparent" />
    </selector>
  </item>
</layer-list>