Changed around line 1
+ :root {
+ --primary: #4CAF50;
+ --secondary: #8BC34A;
+ --accent: #CDDC39;
+ --background: #F1F8E9;
+ --text: #1B5E20;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ margin: 0;
+ padding: 0;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ nav {
+ margin-top: 1rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ padding: 0.5rem;
+ border-radius: 4px;
+ transition: background 0.3s;
+ }
+
+ nav a:hover {
+ background: rgba(255, 255, 255, 0.1);
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .stat-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .stat-value {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .stat-label {
+ color: var(--text);
+ opacity: 0.8;
+ }
+
+ .inventory-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1.5rem;
+ padding: 2rem;
+ }
+
+ .inventory-item {
+ background: white;
+ border-radius: 8px;
+ padding: 1.5rem;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ display: grid;
+ grid-template-columns: 100px 1fr;
+ gap: 1rem;
+ align-items: center;
+ }
+
+ .item-image {
+ width: 100%;
+ border-radius: 4px;
+ }
+
+ .item-details {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+
+ .item-name {
+ font-size: 1.2rem;
+ font-weight: bold;
+ }
+
+ .item-quantity {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ }
+
+ .leaf-icon {
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ background: var(--secondary);
+ clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .stats-grid {
+ grid-template-columns: 1fr;
+ }
+ }