/* Invoice Template CSS */

#invoice .card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
}
#invoice .card-body {
  padding: 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #222;
}
#invoice h4.card-title {
  margin-bottom: 16px;
  font-size: 20px;
}
#invoice .thead-light th {
  background: #f7f7f7;
}
#invoice table.table {
  margin-bottom: 0;
}
#invoice table.table thead th {
  border-bottom: 2px solid #e9ecef;
  font-weight: 600;
}
#invoice table.table tbody td,
#invoice table.table tfoot th {
  vertical-align: middle;
}
#invoice table.table tfoot th {
  border-top: 1px solid #e9ecef;
}
#invoice .text-right {
  text-align: right;
}
@media (max-width: 767px) {
  #invoice .text-right {
    text-align: left;
    margin-top: 12px;
  }
}
@media print {
  body * {
    visibility: hidden;
  }
  #invoice, #invoice * {
    visibility: visible;
  }
  #invoice {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .btn {
    display: none !important;
  }
}
.invoice-company {
  font-size: 18px;
  font-weight: 700;
}
.invoice-meta {
  color: #6c757d;
}
