/*
 * Global CSS styles
 * These styles are loaded on every page for baseline aesthetics.
 */

:root {
	--seaneb-primary: #007bff;
	--seaneb-secondary: #6c757d;
	--seaneb-body-bg: #f8f9fa;
	--seaneb-text-color: #333333;
}

html, body {
	overflow-x: clip;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--seaneb-body-bg);
	color: var(--seaneb-text-color);
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--seaneb-primary);
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

a:hover {
	color: #0056b3;
}


/* Ensure mobile-first box sizing */
*, *::before, *::after {
	box-sizing: border-box;
}

/* Hide Table of Contents on Mobile (max-width: 992px) */
/* @media (max-width: 992px) {
	#ez-toc-container,
	.ez-toc-container,
	.unified-toc-box,
	.ez-toc-v2-container {
		display: none !important;
	}
} */
