body {visibility:hidden;}
.content.print_box {visibility:visible;}
@page 
    {
        size: auto;   /* auto is the initial value */
        margin: 0mm;  /* this affects the margin in the printer settings */
    }

    body 
    {
        background-color:#FFFFFF; 
        border: solid 1px black ;
        margin: 0px;  /* this affects the margin on the content before sending to printer */
   }
@media print {
  #printPageButton {
    display: none;
  }
  .styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #16649c;
    }
    .styled-table thead tr {
        background-color: #16649c;
        color: #ffffff;
        text-align: left;
    }
    .styled-table thead tr th > p {
      margin-bottom: 0;
      text-transform: uppercase;
    }
    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
    }
    .styled-table tbody tr {
        border-bottom: 1px solid #16649c;
    }
    
    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }
    
    .styled-table tbody tr:last-of-type {
        border-bottom: 2px solid #16649c;
    }
    .styled-table tbody tr.active-row {
        font-weight: bold;
        color: #16649c;
    }
}