body {
    font-family: Arial, sans-serif;
    margin: 20px;
  }
  
  h1,
  h2,
  h3 {
    margin-top: 20px;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
  }
  
  table,
  th,
  td {
    border: 1px solid #8d8d8d;
  }
  
  th,
  td {
    padding: 8px;
    text-align: left;
  }
  
  .order-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }
  
  .order-table th,
  .order-table td,
  .packing-table th,
  .packing-table td {
    border: 1px solid #535353;
    padding: 8px;
    text-align: center;
  }
  
  .summary-table th,
  .summary-table td {
    border: 1px solid #8d8d8d;
  }
  
  .order-table th,
  .packing-table th,
  .summary-table th {
    background-color: #97979756;
    color: rgb(24, 24, 24);
  }
  
  .section {
    margin-bottom: 40px;
  }
  
  .Title {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between items */
    margin-bottom: 40px;
  }
  
  .Title .text {
    /* Ensure the text container takes up available space */
    flex-grow: 1;
  }
  
  .Title img {
    margin-left: 20px;
    margin-right: 1pc;
    max-width: 100%; /* Ensures the image doesn't exceed the container's width */
    height: auto;
  }
  
  /* Main.css */
  
  /* Custom Black Button */
  .btn-black {
    background-color: #b9b7b700;
    color: #0a0a0a;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .btn-black:hover {
    background-color: #333333;
    transform: scale(1.05);
  }
  
  .view-manifest-btn {
    min-width: 20px;
  }
  .view-manifest-btn:focus,
  .view-manifest-btn:active,
  .view-manifest-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .view-manifest-btn:hover {
    background-color: #6e6c6c00;
    transform: scale(1.05);
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .warehouse-events-section .col-md-8 {
    padding-right: 5px;
  }
  
  .warehouse-events-section .col-md-4 {
    padding-left: 10px;
  }
  
  .warehouse-events-section ul.progressbar {
    width: 100%;
  }
  .hidden {
    display: none !important;
  }
  
  @media (max-width: 600px) {
    .Title {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .Title img {
      margin-left: 0;
      margin-top: 10px;
    }
  }
  