.wc-shipment-timeline-wrapper {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.09);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
}
.wc-shipment-timeline-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.wc-shipment-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}
.wc-shipment-timeline-dot {
    width: 46px; height: 46px;
    border-radius: 100%;
    border: 4px solid #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ef;
    margin-bottom: 5px;
}
.wc-shipment-timeline-dot.completed {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.wc-shipment-timeline-dot.active {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 2px 10px 0 #c7d2fe;
    animation: pulse 1.2s infinite;
}
.wc-shipment-timeline-label {
    text-align: center;
    font-size: 0.96rem;
    font-weight: 500;
    color: #222;
    margin-top: 3px;
}
.wc-shipment-timeline-bar .wc-shipment-timeline-line {
    flex: 1;
    height: 5px;
    background: #dbeafe;
    border-radius: 10px;
    margin: 0 4px;
}
.wc-shipment-timeline-bar .wc-shipment-timeline-line.completed {
    background: #2563eb;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 #60a5fa44;}
    50% { box-shadow: 0 0 0 7px #60a5fa11;}
}