/* General styles for print */

body {
    font-size: 12pt; /* Adjust font size for better readability on paper */
}

a {
    color: #000; /* Set link color to black for better readability */
}

/* Hide elements not necessary for print */

.no-print {
    display: none;
}

/* Adjustments for specific elements */

.header, .footer {
    display: none; /* Hide header and footer for print */
}

/* Adjustments for the navigation menu */

.navbar, .hamburger {
    display: none; /* Hide navigation bar and hamburger icon */
}

/* Additional adjustments as needed */

/* Styles for printed pages */

@page {
    margin: 1cm; /* Set margin for printed pages */
}

@media print {
    /* Additional styles for printed pages */
}
