/**
 * RLH Design System - Base Styles
 * Common base styles for all RLH projects
 */

body {
	font-family: var(--rlh-font-primary);
	color: #e5e7eb;
	background: var(--rlh-bg-dark);
}

.font-data {
	font-family: var(--rlh-font-mono);
}

/* Prevent font style inheritance issues */
.player-name-tag, .map-label, h2, span, div, i {
	font-style: normal !important;
}

/* Utility Classes */
.hidden {
	display: none !important;
}

