/* Print styles for KKU.Web - Anasayfa area */
@media print {
    /* Hide elements that shouldn't be printed */
    header, 
    .ed-top, 
    .wed-top, 
    .wed-menu, 
    footer, 
    .breadcrumbSection,
    .Sayfa-meta,
    nav,
    .Sayfa-header,
    .main-menu,
    button,
    .ed-com-t1-left,
    .ed-com-t1-right,
    .ed-com-t1-social,
    .print-overlay {
        display: none !important;
    }

    /* Ensure content takes full width and has proper margins */
    .Sayfa-content-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .Sayfa-body {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Ensure text is black for better printing */
    .Sayfa-body * {
        color: #000 !important;
        background: transparent !important;
    }
    
    /* Better handling of links in printed content */
    a, a:visited {
        text-decoration: underline;
    }
    
    /* If there are any tables, make sure they fit */
    .table-wrapper table {
        width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Add page margin */
    @page {
        margin: 2cm;
    }
    
    /* Make images fit properly */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Hide the body background */
    body {
        background: #ffffff !important;
    }
    
    /* Container adjustments */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .row, .col-md-12 {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
}
