/* custom_style.css */ /* Adjust logo dimensions */ #logo img { width: 100px; /* Adjust the width as needed */ height: auto; /* Maintain aspect ratio */ } /* Hide the "Built with Chainlit" footer */ footer { display: none !important; /* Ensure it is completely hidden */ } /* Remove any watermarks */ .watermark { display: none !important; /* Ensure it is not displayed */ } /* Hide specific GitHub attribution links */ a[href*='https://github.com/Chainlit/chainlit'] { display: none !important; /* Completely remove the link from view */ } /* Disable interactions for all links (use sparingly) */ a { pointer-events: none; cursor: default; }