@media print {

    @page {
        size: letter;
        margin: 1cm;
    }

    body {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important; 
        font-size: 12px;
        font-family: "Arial", sans-serif; 
    }

    .top, header, .breadcrumb, .jumbotron, .jumbotron.general-ban, #quickorder .row, .footer, footer, .hide-cell, .hide-print, iframe, .modal, button {
        display: none !important;
    }

    .table {
        margin-top: 20px;
        border-collapse: collapse;
        width: 100%; 
        margin-bottom: 20px; 
    }

    .table th, .table td {
        border: 1px solid black; 
        padding: 8px; 
        text-align: left; 
    }

    .table thead {
        background-color: #f2f2f2; 
    }

    .table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table tr:hover {
        background-color: #e2e2e2;
    }

    ul {
        padding: 0;
        list-style-type: none;
    }

    ul li {
        margin-bottom: 15px;
    }

    ul li label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    ul li input.input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    ul li input.hidden {
        display: none;
    }

    span {
        font-size: 0.9em;
    }
}