/* ========================================
   THEME: BLUE (Default)
   ======================================== */
:root {
	/* Brand Colors - Modern Blue */
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--primary-light: #3b82f6;
	--secondary: #64748b;
	--accent: #0ea5e9;

	/* Status Colors */
	--success: #10b981;
	--warning: #f59e0b;
	--danger: #ef4444;
	--info: #06b6d4;

	/* Additional Colors */
	--light-blue: #dbeafe;
	--dark-blue: #1e3a8a;
	
	/* RGBA Colors for opacity effects */
	--primary-rgb: 37, 99, 235;
	--primary-rgba-10: rgba(37, 99, 235, 0.1);
	--primary-rgba-15: rgba(37, 99, 235, 0.15);
	--primary-rgba-20: rgba(37, 99, 235, 0.2);
	--primary-rgba-30: rgba(37, 99, 235, 0.3);
	--primary-rgba-50: rgba(37, 99, 235, 0.5);
}

