.custom-table-wrapper {
  width: 100%;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
}

.custom-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table-wrapper th,
td {
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}

.custom-table-wrapper th {
  background-color: #9bbaee;
  font-weight: bold;
  border-bottom: transparent;
}

.custom-table-wrapper td {
  padding-left: 20px;
}

.custom-table-wrapper tr:nth-child(odd) {
  background-color: #e9f1ff;
}

.custom-table-wrapper tr:nth-child(even) {
  background-color: #ffff;
}

.custom-table-wrapper th,
.custom-table-wrapper td {
  border-right: 2px solid #9bbaee;
}

.custom-table-wrapper th:last-child,
.custom-table-wrapper td:last-child {
  border-right: none;
}

.custom-table-wrapper th strong,
td strong {
  font-weight: bold;
}

.custom-table-wrapper td sup {
  vertical-align: super;
  font-size: smaller;
}

/* Progress bar start */
.custom-table-wrapper .progress-wrapper {
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
}

.custom-table-wrapper .progress-block {
  width: 20px;
  height: 10px;
  background-color: #ddd;
  border-radius: 3px;
}

.custom-table-wrapper .progress-block.filled {
  background-color: #05c38a;
}
/* Progress bar end */

/* Tooltip start */
.custom-table-wrapper .info-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 5px;
  color: inherit;
  font-size: 16px;
  z-index: 1;
}

.custom-table-wrapper .info-tooltip-text {
  visibility: hidden;
  width: 300px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  white-space: normal;
  line-height: 1.2;
}

.custom-table-wrapper .info-tooltip:hover .info-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* .custom-table-wrapper .info-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  } */
/* Tooltip end */

/* Progress bar and Tooltip positioning */
.custom-table-wrapper .progress-tooltip-container {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 5px;
}

/* First Column Tooltip */
.custom-table-wrapper td:first-child .info-tooltip-text {
  left: 0%; /* Align tooltip closer to the left edge */
  transform: translateX(0); /* No centering */
}

.custom-table-wrapper td:first-child .info-tooltip-text::after {
  left: 0%; /* Adjust arrow to point closer to the icon */
  transform: translateX(0);
}

/* Last Column Tooltip */
.custom-table-wrapper td:last-child .info-tooltip-text {
  left: auto; /* Disable default left alignment */
  right: 0%; /* Align tooltip closer to the right edge */
  transform: translateX(0); /* No centering */
}

.custom-table-wrapper td:last-child .info-tooltip-text::after {
  left: auto; /* Disable default left alignment */
  right: 0%; /* Adjust arrow to point closer to the icon */
  transform: translateX(0);
}
