/* Print-specific styles */
@media print {
    body {
        background-color: #fff !important;
        margin: 0;
        padding: 0;
    }

    /* Hide all non-essential UI elements */
    #sidebar,
    .top-bar,
    .js-single-page .col-md-6.text-end, /* Hides the button container */
    .js-connections-header,
    .js-connections-content,
    #comentarii,
    .row.mt-3 form /* Hides the "Add Comment" form */
    {
        display: none !important;
    }

    /* Make the main content area fill the page */
    .page-content {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 !important;
    }

    /* Reset card styles for printing */
    .card, .card-body {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Ensure the table is styled clearly */
    table {
        width: 100%;
        border-collapse: collapse;
    }
    table th, table td {
        border: 1px solid #ddd;
        padding: 8px;
    }
    table th {
        background-color: #f2f2f2;
    }

    /* Clean up links for print */
    a {
        text-decoration: none;
        color: #000;
    }
    a::after {
        content: none !important;
    }
}