
@media print {
    /* Hide elements not needed for print */
    #header, #footer, #navigation {
        display: none;
    }
    .navbar{
        display:none;
    }
    /* Adjust fonts for better readability */
    body {
        font-family: serif;
        color: black;
    }

    /* Ensure links are underlined and show URLs */
    a {
        text-decoration: underline;
        color: blue;
    }
    a:after {
        content: " [" attr(href) "] ";
    }

    /* Adjust margins and other page-specific properties */
    @page {
        margin: 1cm;
    }

    .noprint{
        display:none;
    }
    .print_only{
        display:block;
    }
    .com_pad_screen {
        padding: 0 !important;
        margin: 0px;
        width: 100% ;
        border: 0px solid red;

    }
    .phone_screen{
        display:none;
    }
}
