/* Hide URL and page title */
@page {
    size: auto; /* Set the paper size to auto or the desired size */
    margin: 0mm; /* Adjust the margins as needed */
    /* Note: The empty string in quotes is intentional and acts as a title for the page */
    @bottom-left {
        content: "";
    }
}

/* Optional: Remove page title and header/footer */
@page {
    margin: 0;
}

@media print {
    /* Hide URL and page title */
    .remove-url {
        display: none;
    }
}
