/*
Print Styles
*/

@media print {
    /* Hide navigation and other non-essential elements */
    .site-header,
    .site-footer,
    .sidebar,
    .navigation,
    .comments,
    button,
    input[type="button"],
    input[type="submit"] {
        display: none !important;
    }
    
    /* Ensure content is readable */
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000 !important;
        background: #fff !important;
    }
    
    /* Remove shadows and other effects */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Ensure links are visible */
    a:after {
        content: " (" attr(href) ")";
    }
    
    /* Page breaks */
    .page-break {
        page-break-before: always;
    }
}
