Macroeconomic Country Report
/* CSS Variables for easy theming */
:root {
/* Primary colors */
--primary: #2563eb;
--primary-light: #60a5fa;
--primary-dark: #1e40af;
/* Status colors */
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
--neutral: #6b7280;
/* Background colors */
--bg-white: #ffffff;
--bg-gray: #f9fafb;
--bg-primary-light: #eff6ff;
/* Text colors */
--text-primary: #111827;
--text-secondary: #6b7280;
--text-white: #ffffff;
/* Border colors */
--border-light: #e5e7eb;
--border-medium: #d1d5db;
/* Shadows */
--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px rgba(0,0,0,0.05);
--shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
/* Spacing */
--spacing-xs: 8px;
--spacing-sm: 12px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
/* Typography */
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.5rem;
--font-size-2xl: 2rem;
--font-size-3xl: 2.5rem;
}
/* Core styles */
.macro-report…
Read more...