.progress-bar-wrapper {
  padding-top: 48px;
}

.tooltip-container {
    display: flex;
    justify-content: space-between; /* Spread tooltips evenly */
    position: relative;
    margin-bottom: 10px; /* Add space between tooltips and the progress bar */
  }
  
  .tooltip {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 1;
  }
  
  .tooltip::before {
    content: "";
    position: absolute;
    bottom: -6px; /* Adjust to match tooltip positioning */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }
  
  .progress-bar {
    display: flex;
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
  }
  
  .progress-segment {
    /* height: 100%; */
  }
  
  .progress-segment.approved {
    background-color: #A1C27A; /* Green */
  }
  
  .progress-segment.pending {
    background-color: #E8E8FF; /* Amber */
  }
  
  .progress-segment.closed {
    background-color: #12335C; /* Red */
  }
  