.order-tracking-container {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            max-width: 700px;
            margin: auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            }

            .order-status-steps {
            display: flex;
            justify-content: space-between;
            list-style: none;
            padding: 0;
            margin-top: 40px;
            position: relative;
            }

            .order-status-steps li {
            position: relative;
            flex: 1;
            text-align: center;
            color: #bbb;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 14px;
            }

            .order-status-steps li .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #bbb;
            color: white;
            font-weight: bold;
            margin-bottom: 8px;
            z-index: 1;
            }

            .order-status-steps li.completed .icon {
            background-color: #06d335;
            }

            .order-status-steps li.active {
            color: #06d335;
            font-weight: 500;
            }

            .order-status-steps li::before {
            content: "";
            position: absolute;
            top: 15px;
            right: -50%;
            width: 100%;
            height: 4px;
            background-color: #bbb;
            z-index: 0;
            }

            .order-status-steps li:first-child::before {
            display: none;
            }

            .order-status-steps li.completed::before {
            background-color: #06d335;
            }