* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 20px;
}

h3 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

table th,
table td {
  border: 2px solid #ccc;
  padding: 12px;
  text-align: center;
}

thead th {
  background-color: #4a8ddf; 
  color: white;
  font-weight: bold;
}

tbody th[scope="row"] {
  background-color: #a7c9f3;
  font-weight: bold;
}

.print-quote {
  display: none;
}

@media print {

  body {
    background: white;
    font-family: "Times New Roman", serif;
    color: black;
  }

  .print-quote {
    display: block;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
  }

  table th,
  table td {
    border: 1px solid black;
  }

  thead th {
    background-color: #c8ddf7;
    color: black;
  }

  tbody th[scope="row"] {
    background-color: #e3effc;
    color: black;
  }
}
