/* Parvenu Custom Styles */

/* Ensure tables have proper spacing */
.markdown-body table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.markdown-body th,
.markdown-body td {
    border: 1px solid #ddd;
    padding: 8px;
}

/* Ensure bullet points are visible */
.markdown-body ul {
    padding-left: 20px;
    list-style-type: disc !important;
}

/* HIDE CHAINLIT BRANDING */

/* Hide 'Built with Chainlit' in footer */
a[href="https://github.com/Chainlit/chainlit"] {
    display: none !important;
}

/* Hide the Chainlit logo in the header if it still persists separately */
/* Note: Providing logo_light.png / logo_dark.png usually replaces it, 
   but sometimes a "Chainlit" text element remains. We can try to hide it via aria-label or specific classes if known.
   For now, we rely on the logo files replacement. */