.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #28a745; /* Green line */
    left: 30px;
    margin-right: -1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 50px;
}

.timeline-item:before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: #eaff00; /* Yellow line */
    position: absolute;
    top: 3px;
    bottom: 0;
    left: 24px; /* Adjust position to align with green dots */
}

.timeline-item:after {
    content: "";
    display: table;
    clear: both;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 18px;
    width: 15px; /* Smaller width */
    height: 15px; /* Smaller height */
    border-radius: 50%;
    background: #28a745; /* Green circle */
    border: 2px solid #28a745; /* Green border */
    text-align: center;
    line-height: 15px;
    font-size: 10px; /* Smaller font size */
    color: #ffffff; /* White text color */
}

.timeline-content {
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.timeline-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
}

.timeline-content small {
    display: block;
    margin-top: 10px;
    color: #6c757d;
}

.required::after {
    font-size: 12px;
    content: " *"; 
    color: red;
    font-weight: bold;
    margin-left: 3px;
}

.bg-purple {
    background-color: purple;
}

.bg-teal {
    background-color: #008080;
}

.text-purple {
    color: purple;
}
.text-teal {
    color: #008080;
}

.icon-size {
    width: 50px;
    height: 50px;
  }

  .card {
    transition: box-shadow 0.3s ease-in-out;
  }

  .card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .card-body {
    padding: 1.25rem;
  }

  .chart-container {
    height: 100%;
  }