/* ============================================================
   box_shadow.css — mirrors library/lib/src/theme/box_shadow.dart
   ============================================================
   Brand drop-shadow tokens for elevated surfaces (toasts,
   dropdowns, sheets, cards, mobile pressables). One token,
   --shadow-elevated, resolves to the right scheme via
   `prefers-color-scheme` — the web equivalent of AppShadows.of.
   ============================================================ */

:root {
  /* AppShadows.light: BoxShadow(0x14000000, blurRadius: 10, offset: 0,1) */
  --shadow-elevated: 0 1px 10px rgba(0, 0, 0, 0.078);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* AppShadows.dark: BoxShadow(0x29000000, blurRadius: 14, offset: 0,1) */
    --shadow-elevated: 0 1px 14px rgba(0, 0, 0, 0.161);
  }
}
