﻿.status-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    margin: 30px auto;
    max-width: 800px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 80px;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #ccc;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: transparent;
}

.line {
    flex: 1;
    height: 3px;
    background-color: #ccc;
    margin: 0 5px;
}

.step.completed .circle {
    border-color: #28a745;
    color: #28a745;
}

.line.completed {
    background-color: #28a745;
}

.label {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
