.content-wrapper {
    padding: 0 30px;
    height: 100vh;
  }
  .head-wrapper {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
  }
  .head-wrapper h1 {
    margin: 0 0 10px 0;
  }
  .table-wrapper {
    width: 68%;
    max-height: calc(100vh - 135px);
    overflow: auto;
    position: relative;
    margin-top: 20px;
    border: 1px solid #ddd; /* Add a border for better visual separation */
    border-radius: 5px; /* Add rounded corners */
  }
  .table-wrapper::-webkit-scrollbar {
    width: 10px;
  }

  .table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .table-wrapper::-webkit-scrollbar-thumb {
    background: #6f5470;
    border-radius: 5px;
  }

  .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #6f5470;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  thead {
    position: sticky;
    top: 0;
  }

  th,
  td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  th {
    background-color: #6f5470;
    color: #ffffff;
  }
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  tr:hover {
    background-color: #ddd;
  }
  .collectSelected {
    background-color: #6f5470;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  .collectSelected:hover {
    background-color: #72577a;
  }
  #selectAll {
    margin-left: 4px;
  }
  .orderCheckbox {
    margin-left: 4px;
  }

  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(
      255,
      255,
      255,
      0.7
    ); /* White overlay with transparency */
    z-index: 9999;
    display: none;
  }

  .loader {
    border: 6px solid #6f5470; /* Match your theme color */
    border-radius: 50%;
    border-top: 6px solid #f4f7f6; /* Match your theme color */
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite; /* Rotate animation */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.dashboard_button{
    align-self: center;
}


/* General button styling, adapted to theme color */
.custom-button {
    background-color: #6f5470; /* Theme base color */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #5d4660; /* Slightly darker shade of the theme color for hover effect */
}

/* Specific styling for Package Slip button - using complementary and contrast colors */
.package-slip-button {
    background-color: #9673a6; /* Lighter and softer purple, derived from the theme color */
}

.package-slip-button:hover {
    background-color: #856394; /* A bit darker shade for hover effect */
}

/* Specific styling for Manifest button - contrast while maintaining theme harmony */
.manifest-button {
    background-color: #82658b; /* A different shade of purple, ensuring good readability and theme consistency */
}

.manifest-button:hover {
    background-color: #72577a; /* Darker shade for hover effect */
}

.manifest-date-input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #000000;
    margin-right: 25px;
}

.error-div {
    padding: 5px ;
    border: none;
    color: red;
}



