﻿@media print {
    body {
        font-family: Arial, sans-serif;
        font-size: 12px;
    }

    .print-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #007bff;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

        .print-header h2 {
            color: #007bff;
            font-size: 18px;
            margin: 0;
        }

    .print-footer {
        position: fixed;
        bottom: 0;
        right: 0;
        font-size: 10px;
        color: #666;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th {
        background-color: #f2f2f2;
        font-weight: bold;
        border: 1px solid #ccc;
        padding: 5px;
    }

    td {
        border: 1px solid #ccc;
        padding: 5px;
    }
}
