/* Whispr Firebase Hosting — Common Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
	--primary: #6C63FF;
	--primary-dark: #4B44CC;
	--surface: #FFFFFF;
	--surface-alt: #F8F8FF;
	--text: #1A1A2E;
	--text-muted: #6B7280;
	--border: #E5E7EB;
	--radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--text);
	min-height: 100vh;
}

html[dir="rtl"] { direction: rtl; text-align: right; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
