body {
  font-family: Arial, sans-serif;

  background: #eee;
}

.container {
  width: 1100px;

  margin: auto;
}

.form {
  background: white;

  padding: 20px;

  margin-bottom: 30px;
}

input,
textarea {
  width: 100%;

  padding: 10px;

  margin: 5px 0;

  box-sizing: border-box;
}

button {
  background: #ff9800;

  border: none;

  color: white;

  padding: 10px 20px;

  cursor: pointer;
}

#invoice {
  background: white;
}

header {
  background: #101d33;

  color: white;

  padding: 30px;

  display: flex;

  justify-content: space-between;

  border-bottom: 15px solid #ff9800;
}

.logo {
  width: 100px;

  height: 70px;

  object-fit: contain;
}

.invoiceTitle h1 {
  font-size: 40px;

  margin: 0;
}

.info {
  display: flex;

  justify-content: space-between;

  padding: 30px;
}

.info b {
  background: #101d33;

  color: white;

  padding: 5px;
}

.invoiceTable {
  width: 100%;

  border-collapse: collapse;
}

.invoiceTable th {
  background: #ff9800;

  color: white;

  padding: 12px;
}

.invoiceTable td {
  padding: 10px;

  border-bottom: 1px solid #ddd;
}

.bottom {
  display: flex;

  justify-content: space-between;

  padding: 30px;
}

.payment {
  width: 350px;

  border-top: 3px solid #ff9800;
}

.payment h3 {
  background: #101d33;

  color: white;

  padding: 10px;

  font-size: 15px;
}

.payment table {
  width: 100%;
}

.payment td {
  border: none;

  padding: 5px;
}

.summary {
  width: 350px;
}

.summary h2 {
  background: #ff9800;

  color: white;

  padding: 15px;
}

footer {
  padding: 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.signature {
  width: 120px;

  height: 70px;

  object-fit: contain;
}

@media print {
  body {
    background: white;

    -webkit-print-color-adjust: exact;

    print-color-adjust: exact;
  }

  .container {
    width: 100%;
  }

  .title,
  .form {
    display: none;
  }

  #invoice {
    width: 100%;
  }

  header {
    background: #101d33 !important;
  }

  .invoiceTable th {
    background: #ff9800 !important;
  }

  .summary h2 {
    background: #ff9800 !important;
  }
}
