.table-container {
  width: 100%;
  max-height: 400px;
  overflow: scroll;
  position: relative;
  z-index: 100;
  border: 1px solid #ddd;
  padding: 0;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .table-container {
    max-width: 320px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .table-container {
    max-width: 580px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .table-container {
    max-width: 700px;
  }
}


.table-error-message {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.custom-table {
  position: relative;
  border: none;
}

.custom-table-thead {
  position: -webkit-sticky;
  position: sticky;
  cursor: pointer;
  background: #d3480d;
  color: white;
  left: 0;
  top: 0;
  border: 1px solid #eee;
}

.table-th-content {
  width: 100%;
  padding: 8px;
  min-width: 8vh;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.table-th {
  display: flex;
  flex-direction: row;
  min-width: 150px;
  background: #d3480d;
  border: 1px solid #eee;
  border-width: 0px 1px 0px 0px;
}

.table-td {
  padding: 8px;
  /*
  display: flex;
  flex-direction: row;
  */
  min-width: 150px;
  border: 1px solid #eee;
  border-width: 0px 1px 1px 0px;
}

.table-tr {
  display: flex;
  flex-direction: row;
  border: 1px solid #eee;
  border-width: 0px 1px 1px 0px;
}

.table-thead {
  background: #d3480d;
  width: 100%;
  display: flex;
  flex-direction: row;
  border: 1px solid #eee;
  border-width: 0px 1px 1px 0px;
  position: sticky;
}

.ExpandableText-text {
  transition: height 0.3s ease-out 0s;
}


/*# sourceMappingURL=main.css.map*/