@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';

    --color-accent-50: oklch(0.98 0.02 55);
    --color-accent-100: oklch(0.95 0.04 55);
    --color-accent-200: oklch(0.90 0.08 55);
    --color-accent-300: oklch(0.84 0.12 50);
    --color-accent-400: oklch(0.75 0.16 45);
    --color-accent-500: oklch(0.65 0.19 40);
    --color-accent-600: oklch(0.58 0.20 38);
    --color-accent-700: oklch(0.50 0.18 38);
    --color-accent-800: oklch(0.42 0.14 38);
    --color-accent-900: oklch(0.35 0.10 38);
}

@import '../../vendor/livewire/flux/dist/flux.css';
@custom-variant dark (&:where(.dark, .dark *));  /*adding this makes flux not default to dark mode*/
/*style required for alpine.js x-cloak to work*/
[x-cloak] { display: none !important; }

/* Add horizontal padding to table edge cells and pagination inside cards */
[data-flux-card] [data-flux-table] th:first-child,
[data-flux-card] [data-flux-table] td:first-child {
    padding-inline-start: 1rem;
}

[data-flux-card] [data-flux-table] th:last-child,
[data-flux-card] [data-flux-table] td:last-child {
    padding-inline-end: 1rem;
}

[data-flux-card] > .flex > .\@container {
    padding-inline: 1rem;
    padding-bottom: 0.75rem;
}
