/* .timeline-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    background: #f9f9f9;
}
.timeline {
    display: flex;
    flex-direction: column;
}
.timeline-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
 .timeline-icon {
    width: 30px;
    height: 30px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}


 


 */

/* Timeline container */
.timeline {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    position: relative;
}

/* Timeline item */
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin: 10px 0;
}

/* Timeline dot */
.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6c757d;
    position: absolute;
    left: -20px;
}

/* Timeline content */
.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    width: calc(100% - 30px); /* To offset the dot's size */
    position: relative;
}

/* Timeline message text */
.timeline-message {
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline date text */
.timeline-date {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

/* Optional: Highlighting the active item or adding transition effects for animation */
.timeline-item:nth-child(odd) .timeline-content {
    background-color: #e9ecef;
}

/* Styling timeline item for better visibility */
.timeline-item:last-child .timeline-content {
    background-color: #d1e7dd;
}

