/* Premium Enterprise Theme Integration */
/* This file extends the premium theme with essential app-wide styles */

body {
  /* Essential body styling - premium theme variables are loaded from premium-theme.css */
  /*font-family: var(--raga-font-family-primary);*/
  margin: 0;
  padding: 0;
  background:  var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  display: flex;
  height: 100vh;


  /* Enhanced text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Scrollbar styling for the entire app */
body {
  scrollbar-color: var(--md-sys-color-outline-variant) transparent;
}

body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: var(--md-sys-shape-corner-full);
}

body::-webkit-scrollbar-thumb {
  background: var(--md-sys-color-outline-variant);
  border-radius: var(--md-sys-shape-corner-full);
}
