.DocumentModal {
  /* Styles for DocumentModal */
}
.DocumentModal .container {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  background-color: #696767;
  text-align: center;
}
.DocumentModal button {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.DocumentModal button:hover {
  background-color: #0056b3;
}

.modal-dialog-parcel {
  max-width: 90% !important;
  height: 100%;
}

.modal-dialog-scroll-container {
  height: 100%;
  max-height: 90%;
  overflow-y: auto;
}.Comments {
  /* Styles for Comments */
}
.Comments .container {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  background-color: #696767;
  text-align: center;
}
.Comments button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.Comments button:hover {
  background-color: #0056b3;
}.NotFound {
  /* Styles for NotFound */
  color: wheat;

  .container {
      border: 1px solid #ccc;
      padding: 1rem;
      border-radius: 8px;
      background-color: #696767;
      text-align: center;
    }

    button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0056b3;
    }

}.scrollDocumentGridContainer {
  min-height: 160px;
  max-height: 600px;
  overflow-y: auto;
}

.documentPreviewContainer {
  max-height: 600px;
}

.DocumentGridTable {
  /* Styles for DocumentGridTable */

  .container {
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
  }

  
  thead {
    background-color: #17253f !important;
    color: #ced4da;
    min-height: 45px;
  }
  
  th {
    text-align: start !important;
    padding: 8px 0px 8px 8px !important;
    vertical-align: super !important;
  }

  td {
    white-space: normal;
    word-break: break-word;
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
  }

  tr {
    cursor: pointer;
  }

  button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  button:hover {
    background-color: #0056b3;
  }
}.OmsDropdown {
  /* Styles for OmsDropdown */
  
}.PwaDropdown {
  /* Styles for PwaDropdown */

}

.ellipsis-menu:disabled {
  color: #9c9c9c !important;
  background: #cecece !important;
  border-color: #cecece !important;
  cursor: not-allowed;
}.DocumentPreview {
  /* Styles for DocumentPreview */
  .container {
      border: 1px solid #ccc;
      padding: 1rem;
      border-radius: 8px;
      background-color: #696767;
      text-align: center;
    }

    button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0056b3;
    }
}.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.ms-auto {
  margin-left: auto !important;
  }
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}