/* Timeline & vertical line */
section.my_account.orderdetails .timeline {
    display: grid;
    gap: 2rem;
    position: relative;
    padding-left: 8px;
    transform: translateX(-16px);
}
section.my_account.orderdetails .progress-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: #ccc;
    z-index: 0;
    transform: translateX(-50%);
}
section.my_account.orderdetails .progress-fill {
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 0;
    background-color: #008000;
    z-index: 1;
    transform: translateX(-50%);
    transition: height 2s ease-in-out;
}


section.my_account.orderdetails .marker {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    outline: 3px solid #D9D9D9;
    justify-self: center;
    z-index: 2;
    transition: all 0.6s ease;
    opacity: 1;
    transform: scale(1);
}

/* Completed marker: filled green with green outline */
section.my_account.orderdetails .step.completed .marker {
    background-color: #008000;
    outline: 3px solid #D6FFD6;
    width: 14px;
    height: 14px;
}

/* Step layout and content */
section.my_account.orderdetails .step {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    position: relative;
}
section.my_account.orderdetails .content h4 {
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666565;
}
section.my_account.orderdetails .content p {
    margin: 0.25rem 0 0;
    font-size: clamp(10px, 1vw, 14px);
    color: #666565;
}
section.my_account.orderdetails .step.completed h4 {
    color: #008000;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    section.my_account.orderdetails .marker {
        width: 9px;
        height: 9px;
    }
    section.my_account.orderdetails .step.completed .marker {
        width: 11px;
        height: 11px;
    }
    section.my_account.orderdetails .step {
        grid-template-columns: 29px 1fr;
    }
    section.my_account.orderdetails .timeline {
        padding-left: 9.5px;
        gap: 25px;
    }

    section.my_account.orderdetails .content p {
    margin: 2px 0 0;
    transform: translateX(1px);
}
}
