/* Example[] Avoid printing URLs */
@media print {
  a[href]:after {
    content: none
  }
  .no-print, .no-print * {
    display: none !important;
  }
}

/* Example[] remove lines between table rows */
.table-custom table th, table td { 
     border-top: none !important; 
 }

/* Example[] center an image */
/* Note that it cannot be centered if the width is set to 100% (full-width). */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 99%;
}
