#quotation {
  h1 {
    margin-bottom: 0;
    color: white; 
  }
  .header {
    padding: 1rem;
    background-color: green;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr .4fr;
    grid-row-gap: 0;
    > :nth-child(even) { text-align: right; }
  }
  .ref-no, .quantity {
    font-size: 0.875rem;
    color: gray;
  }
}