/*
 * 管理画面の明るめテーマ上書き(ライトモードのみ)。
 * ビルド不要: AppServiceProvider で FilamentAsset 登録 →
 * `php artisan filament:assets` で public/css/app/ へ公開される。
 */

/* ページ全体: グレー一色 → 青みがかった明るいグラデーション */
html:not(.dark) .fi-body {
    background: linear-gradient(165deg, #eff6ff 0%, #f0f9ff 40%, #f8fafc 100%) fixed;
}

/* トップバー: すりガラス風の白 */
html:not(.dark) .fi-topbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

/* モバイル時に重なるサイドバーも白基調のまま明るく */
html:not(.dark) .fi-sidebar.fi-sidebar-open {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

/* カード・セクションの影をやわらかく浮かせる */
html:not(.dark) .fi-section,
html:not(.dark) .fi-wi-stats-overview-stat {
    box-shadow: 0 1px 3px rgba(14, 116, 197, 0.08), 0 4px 16px rgba(14, 116, 197, 0.06);
}
