@tailwind base; @tailwind components; @tailwind utilities; :root { --primary: #4a5d45; --secondary: #f9f8f3; } body { background-color: var(--secondary); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; -webkit-tap-highlight-color: transparent; } .header-curve { background: var(--primary); height: 220px; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; display: flex; flex-direction: column; align-items: center; padding-top: 40px; } .no-scrollbar::-webkit-scrollbar { display: none; } .cat-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }