body {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Ensure SVG text uses the loaded font */
svg text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Print styles - only show SVG */
@media print {
    body * {
        visibility: hidden;
    }

    #svg-container, #svg-container * {
        visibility: visible;
    }

    #svg-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        padding: 0;
    }

    /* Ensure SVG fills the page */
    svg {
        width: 100% !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
    }
}