Imagine a scenario where I have a specific page featuring a print button. Clicking on this button redirects me to a separate page with the same content, optimized for printing purposes. Instead of using @media print directly on the original page due to numerous modifications needed, I opted to create a dedicated print page. Now, my query is: When designing the styles for the print page, should I still utilize @media print in the CSS and place all styling within that query? Or can I simply write CSS rules without incorporating the media query? Are there any disadvantages to omitting the media query?