/**
 * Admitro vendor CSS — single consolidated entry that replaces the 10
 * individual <link> tags previously hardcoded in `welcome.blade.php`.
 *
 * This file lives in `public/` (NOT `resources/`) on purpose: it is served
 * as a plain static stylesheet via a <link> tag in blade, so it bypasses
 * Vite's CSS pipeline entirely. That matters because `postcss-import` (run
 * inside Vite's dev server) tries to inline absolute-path @imports like
 * `/admitro/assets/...` as filesystem paths — which fails with ENOENT and
 * crashes the dev server. Serving this file directly means the browser
 * resolves each @import as a normal same-origin HTTP request, and the
 * nested `url(font/image)` references inside each Admitro stylesheet
 * resolve correctly relative to their own location in `public/admitro/`.
 *
 * Load order in blade: this <link> is emitted BEFORE `@vite(...)` so that
 * `app.css` (Tailwind + our overrides) cascades after Admitro's defaults.
 *
 * In Phase 4 (when `public/admitro/` becomes a design-reference directory
 * only), the bundled CSS we actually need can be migrated into Vite source
 * proper and truly inlined. Until then this file is the single source of
 * truth for the Admitro CSS load order.
 *
 * Order matches the original `welcome.blade.php` <link id="admitro-style-N"> sequence.
 */
@import url('/admitro/assets/plugins/bootstrap/css/bootstrap.min.css');
@import url('/admitro/assets/css/style.css');
@import url('/admitro/assets/css/dark.css');
@import url('/admitro/assets/css/skin-modes.css');
@import url('/admitro/assets/css/animated.css');
@import url('/admitro/assets/css/sidemenu.css');
@import url('/admitro/assets/plugins/p-scrollbar/p-scrollbar.css');
@import url('/admitro/assets/css/icons.css');
@import url('/admitro/assets/plugins/simplebar/css/simplebar.css');
@import url('/admitro/assets/colors/color1.css');
