devindulitha/shopnest-commerce-cloud
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');2 3body {4 font-family: 'Inter', sans-serif;5 min-height: 100vh;6 display: flex;7 flex-direction: column;8}9 10/* Custom scrollbar */11::-webkit-scrollbar {12 width: 8px;13}14::-webkit-scrollbar-track {15 background: #f1f1f1;16}17::-webkit-scrollbar-thumb {18 background: #888;19 border-radius: 4px;20}21::-webkit-scrollbar-thumb:hover {22 background: #555;23}24 25/* Animation classes */26.fade-in {27 animation: fadeIn 0.5s ease-in-out;28}29@keyframes fadeIn {30 from { opacity: 0; }31 to { opacity: 1; }32}