/**
 * Print styles for the Smokey Rooms theme.
 * Hides unnecessary elements and ensures readability.
 */

@media print {
	body {
		font-family: 'Times New Roman', Times, serif;
		font-size: 12pt;
		line-height: 1.5;
		color: #000;
		background: #fff;
	}

	.site-header,
	.site-footer,
	.comments-area,
	.post-navigation,
	.widget-area {
		display: none;
	}

	a {
		text-decoration: none;
		color: #000;
	}

	a:after {
		content: " (" attr(href) ")";
	}
}
