/**
 * Özel stiller — `custom/custom.css`
 *
 * Bu dosya `functions.php` içinde `dp_enqueue_custom_css` ile
 * `style.css` (`dp-style`) sonrası yüklenir (öncelik: kullanıcı kuralları).
 *
 * @package deTube
 * @version 2.0.0
 */

/* Örnek: palet (yorumu kaldırarak etkinleştirin)
:root {
	--dp-accent: #b70000;
	--dp-text: #0f172a;
	--dp-muted: #475569;
}
*/

/* Klavye / erişilebilir odak halkası */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--dp-accent, #2563eb);
	outline-offset: 2px;
}

a:focus:not(:focus-visible) {
	outline: none;
}

/* Yazdır: kenar çubukları ve etkileşim alanlarını gizle */
@media print {
	#header,
	#sidebar,
	.loop-actions,
	#comments #respond,
	#footbar,
	#social-nav,
	.site-header {
		display: none !important;
	}

	body {
		background: #fff !important;
		color: #000 !important;
		font-size: 12pt;
	}

	#main .wrap,
	#content {
		width: 100% !important;
		max-width: 100% !important;
	}
}
