.timeline-app {
    display: flex;
    align-items: center;
    width: 90%; /* Use a percentage width to make it responsive */
    max-width: 800px; /* Limit the maximum width on large screens */
    margin: auto; /* Center the timeline */
}

.timeline-app-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text and circle */
}

.timeline-app-line {
    flex-grow: 1;
    height: 2px;
    background-color: #3b82f6;
    margin: 0 15px; /* Small margin between the circles and the line */
}

.timeline-app-step {
    display: flex;
    flex-direction: column; /* Stack circle and text vertically */
    align-items: center; /* Center the text horizontally under the circle */
}

.inner-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    background-color: white;
}

.timeline-app-step.active .inner-circle {
    background-color: #3b82f6;
    color: white;
}

.step-text {
    margin-top: 8px; /* Space between the circle and text */
    font-size: 0.9rem; /* Adjust font size */
    text-align: center;
    color: #3b82f6;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .timeline-app {
        width: 95%; /* Slightly wider on mobile for better visibility */
    }

    .inner-circle {
        width: 30px; /* Smaller circles on mobile */
        height: 30px;
        font-size: 0.8rem; /* Smaller font on mobile */
    }

    .step-text {
        font-size: 0.7rem; /* Smaller text on mobile */
    }
}
