/* ========================================
   THEME: GREEN
   ======================================== */
:root {
	/* Brand Colors - Modern Green */
	--primary: #059669;
	--primary-dark: #047857;
	--primary-light: #10b981;
	--secondary: #64748b;
	--accent: #34d399;

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

	/* Additional Colors */
	--light-blue: #d1fae5;
	--dark-blue: #065f46;
	
	/* RGBA Colors for opacity effects */
	--primary-rgb: 5, 150, 105;
	--primary-rgba-10: rgba(5, 150, 105, 0.1);
	--primary-rgba-15: rgba(5, 150, 105, 0.15);
	--primary-rgba-20: rgba(5, 150, 105, 0.2);
	--primary-rgba-30: rgba(5, 150, 105, 0.3);
	--primary-rgba-50: rgba(5, 150, 105, 0.5);
}

