@media print {

    @page {
        margin: 20mm; /* Adjust the value as needed */
    }

    /* Reset margins and padding for all elements */
    * {
        margin: 100 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }


    /* Hide elements not needed in the print version */
    header, footer, nav, .btns-wrap, .social-links4, .bottom-bar, .menu-wrap, .header-search, .login-popup-wrap, #home, .navbar, .banner-area, .footer-bottom {
        display: none !important;
    }

    /* Hide the 'Back to Home' button */
    center, .btn {
        display: none !important;
 }



    /* Adjust table styles for better readability */
    table {
        width: 100% !important;
        max-width: 100% !important;
        border-collapse: collapse !important;
	border: 0.25px solid grey !important;
    }
    table, th, td {
        border: 1px solid grey !important;
		
    }

    th, td{
		padding: 0px 10px 0px 20px !important;
        text-align: left !important;
	font-size: 15px !important; /* Reduce the font size / Table Header Size */
		page-break-inside: avoid;
    }
	    ul{
		padding: 0px 5px 0px 20px !important;
    }
	h3, h4, h5, th {
		color: black !important;
    }

    


    /* Hide URLs next to hyperlinks */
    a[href]:after {
        content: none !important;
    }
    


    /* Any additional print styles */
    /* ... */
}




