/* 1. Universal Reset */
*,
*::before,
*::after {
  box-sizing: border-box; /* Crucial for predictable layout */
  margin: 0;              /* Resets all default margins */
  padding: 0;             /* Resets all default padding */
}

/* 2. Overriding WordPress Root Variables */
:root {
  /* You can reset any WordPress-specific root variables here */
  --wp--preset--font-size--normal: 1rem; /* Example: Resetting font size */
  --wp--preset--font-size--huge: 2.5rem;  /* Example: Resetting font size */
  
  /* Resetting Admin Theme Colors (optional, usually only affects admin screen) */
  --wp-admin-theme-color: initial; 
  --wp-admin-border-width-focus: initial; 
}

/* 3. HTML/Body base style (optional) */
body {
    line-height: 1.5; 
}