.waybill-logo {
    display: flex;
    align-items:center;
    gap:1rem
  }
  .waybill-logo img{
    width: 35px;
  }

  .waybill-logo-text .p {
    margin: 0;
    font-weight: 700;
    line-height:1
  }
  table.waybill{
    width: 100%;
    border-collapse: collapse
  }
  table.waybill td{
    border: 1px solid black;
    padding: .25rem;
  }

  .address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .5rem;
  }
  

  .caution {
    display: flex;
    align-items: center;
  }
  
  .fragile {
    --fragile-caution: #000;
    background: var(--fragile-caution);
    border: 5px solid var(--fragile-caution);
  }
  .fragile-main {
    line-height: 1;
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: clamp(32px, 20vw, 48px);
    text-align: center
  }
  .fragile-sub {
    margin: 0;
    background: #fff;
    font-weight: 700;
    color: var(--fragile-caution);
    text-align: center
  }

  .fragile-note {
    padding: 0 1rem;
    text-align: center;
    font-size: .795rem;
    text-transform: uppercase;
    line-height: 1;
  }

  table.waybill-items{
    margin-top: 1rem;
    width: 100%;
    border-collapse: collapse;
    text-align:center;
  }
  table.waybill-items th{
    border-bottom: 1px solid black;
    padding: .25rem;
  }
  table.waybill-items td{
    padding: 0 .25rem;
  }
  table.waybill-items th:not(:last-child){
    border-right: 1px solid black;
  }
  table.waybill-items td:not(:last-child){
    border-right: 1px solid black;
  }