/* CSS Custom Properties - Minimal custom variables, rely on DashKit/Bootstrap 5 defaults */

:root {
  /* Transitions - Custom timing functions for smooth interactions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Scale - Layering for modals, dropdowns, tooltips */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Note: All colors, spacing, border-radius, and other styling use DashKit/Bootstrap 5 defaults.
 * Reference Bootstrap 5 CSS variables for customization:
 * - Colors: --bs-primary, --bs-success, --bs-warning, --bs-danger, --bs-info
 * - Grays: --bs-gray-100 through --bs-gray-900
 * - Spacing: Bootstrap spacing utilities (m-*, p-*, gap-*)
 * - Border radius: --bs-border-radius, --bs-border-radius-sm, --bs-border-radius-lg
 */
