@tailwind base; @tailwind components; @tailwind utilities; body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } /* Smooth collapse animation */ .collapsible-content { overflow: hidden; transition: max-height 0.25s ease-in-out, opacity 0.2s ease; } .collapsible-content.collapsed { max-height: 0; opacity: 0; } .collapsible-content.expanded { max-height: 2000px; opacity: 1; }