/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Set default font for entire application */
* {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}



/* Global border-radius reset scoped to main content (keeps header intact) */
#content .rounded,
#content .rounded-sm,
#content .rounded-md,
#content .rounded-lg,
#content .rounded-xl,
#content .rounded-2xl,
#content .rounded-3xl,
#content .rounded-full,
#content .rounded-t,
#content .rounded-r,
#content .rounded-b,
#content .rounded-l,
#content .rounded-tl,
#content .rounded-tr,
#content .rounded-br,
#content .rounded-bl,
#content .rounded-s,
#content .rounded-e,
#content .rounded-ss,
#content .rounded-se,
#content .rounded-es,
#content .rounded-ee {
  border-radius: 0 !important;
}

/* Hard reset: ensure any remaining radii inside main content are removed */
#content *,
#content *::before,
#content *::after {
  border-radius: 0 !important;
}

