.rebate-tab {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid lightgray;
}

.rebate-tab li {
  padding: 15px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.rebate-tab li.active {
  font-weight: bold;
  border-bottom: 3px solid rgb(0, 123, 255);
}

.workflow-tabs-ttc-list,
.workflow-tabs {
  display: flex;
  align-items: center;
}

.workflow-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  color: #333;
  border-top-left-radius: 8px; /* Round top-left corner */
  border-top-right-radius: 8px;
}

.workflow-list li {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
}

.workflow-list li.active-item {
  background-color: #fff;
  color: #000000;
  font-weight: 500;
  border-bottom: 2px solid #333;
}

.workflow-list li:not(:last-child) {
  margin-right: 10px;
}

.tab-line {
  height: 3px;
  width: 100%;
  background-color: #007bff; /* Line color */
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.workflow-list li.active-item ~ .tab-line {
  transform: translateX(calc(100% + 10px)); /* Move line to selected tab */
}


.tooltip-icon i {
  color: #007bff; /* Adjust the color of the tooltip icon */
  font-size: 14px; /* Adjust the size of the icon */
}

/* Dropdown container */
.dropdown-cu {
  position: relative;
  display: inline-block;
  top:-10px;
}

/* Dropdown button */
.dropdown-cu button {
  background-color: transparent;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-cu-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Buttons inside the dropdown */
.dropdown-cu-content button {
  background-color: #f1f1f1;
  color: black;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

/* Show the dropdown menu on hover */
.dropdown-cu:hover .dropdown-cu-content {
  display: block;
}

/* Hover effect on dropdown buttons */
.dropdown-cu-content button:hover {
  background-color: #ddd;
}