/* Custom styles to set Inter font and smooth scrolling */
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            padding-bottom: 4rem; /* 4rem is 64px, slightly more than the 16 unit (4rem) height of the tab bar */
        }
        /* Custom color palette for the workshop theme */
        .bg-primary { background-color: #1a365d; } /* Dark Blue */
        .text-primary { color: #1a365d; }
        .bg-accent { background-color: #f6ad55; } /* Orange/Gold Accent */
        .hover-accent:hover { background-color: #ed8936; }

        header {
            text-align: center;
            
        }

        img, object, iframe, video {
            max-height: 100%;
            max-width: 100%;
        }