1/*
2 * Card
3 *
4 * Visual shell only — themed surface (bg / foreground / border) with the
5 * `--radius-card` corner. No layout, padding, or opinion about what goes
6 * inside. Consumers compose their own spacing (`p-6`, `flex flex-col`,
7 * `<details>`, etc.) so the card stays usable for any content shape.
8 */
9
10@layer components {
11 .admin-card {
12 @apply bg-admin-card text-admin-card-foreground border;
13 border-radius: var(--radius-card);
14 }
15}