/* Global body styling for fixed header */
body {
    padding-top: 4rem; /* 64px - equivalent to pt-16 in Tailwind */
    padding-bottom: 4rem; /* Add bottom padding for mobile navbar */
}

/* Mobile navbar styles */
@media (min-width: 768px) {
    body {
        padding-bottom: 0; /* Remove bottom padding on desktop */
    }
}
