@media print {
    /* Hide navigation, footer, forms, and buttons */
    .navbar,
    footer,
    form,
    .btn {
        display: none !important;
    }

    /* Ensure the main content is visible and uses the full width */
    body {
        padding: 0;
        margin: 0;
    }
    main.container-fluid {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    /* Optional: Add some basic print styling for tables */
    table {
        width: 100%;
        border-collapse: collapse;
    }
    th, td {
        border: 1px solid #ccc;
        padding: 8px;
    }
    a {
        text-decoration: none;
        color: #000;
    }
}
